:root {
  --blue-950: #061724;
  --blue-900: #062d45;
  --blue-800: #0a3f5f;
  --blue-700: #0b4f7a;
  --blue-500: #167daf;
  --green-700: #238846;
  --green-600: #30a651;
  --green-500: #45bd63;
  --green-100: #effaf3;
  --ink: #102434;
  --muted: #61717f;
  --soft: #f6fafc;
  --white: #ffffff;
  --line: rgba(6, 45, 69, .13);
  --shadow: 0 24px 72px rgba(5, 45, 68, .13);
  --shadow-soft: 0 14px 34px rgba(5, 45, 68, .08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body[data-lang="ar"] {
  direction: rtl;
  text-align: right;
  font-family: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
}
body[data-lang="en"] {
  direction: ltr;
  text-align: left;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}
body[data-lang="ar"] .lang-en,
body[data-lang="en"] .lang-ar { display: none !important; }
body[data-lang="ar"] .lang-ar,
body[data-lang="en"] .lang-en { display: inline; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.container { width: min(100% - 56px, var(--container)); margin-inline: auto; }
.section-pad { padding: 92px 0; }
.soft-section { background: linear-gradient(180deg, #f8fcff 0%, #f2fbf6 100%); }
.skip-link {
  position: absolute;
  inset-inline-start: 20px;
  top: -72px;
  z-index: 9999;
  color: #fff;
  background: var(--blue-900);
  padding: 10px 16px;
  border-radius: 12px;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 184px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 24px);
  flex: 1;
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-900);
}
.main-nav a {
  position: relative;
  padding: 9px 0;
  white-space: nowrap;
  color: rgba(16, 36, 52, .83);
}
.main-nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--green-600), var(--blue-500));
  transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue-900);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 22px;
  cursor: pointer;
}
.lang-toggle {
  border: 1px solid rgba(11,79,122,.22);
  background: #fff;
  color: var(--blue-900);
  min-width: 86px;
  height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(5,45,68,.05);
}
.lang-toggle:hover { border-color: rgba(48,166,81,.48); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 8% 16%, rgba(48,166,81,.12), transparent 35%),
    radial-gradient(circle at 96% 8%, rgba(22,125,175,.13), transparent 34%),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -18% -34% -18%;
  height: 48%;
  background: linear-gradient(90deg, rgba(11,79,122,.06), rgba(48,166,81,.10));
  transform: rotate(-3deg);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(450px, .95fr) minmax(0, 1fr);
  gap: clamp(44px, 5vw, 76px);
  align-items: center;
}
.hero-copy { max-width: 760px; }
.hero-eyebrow { margin-bottom: 14px; }
.hero h1 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.hero-lead {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.95;
  font-weight: 600;
  max-width: 760px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.hero-points article {
  min-width: 0;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: 0 10px 28px rgba(5,45,68,.07);
}
.chip-title {
  display: block;
  color: var(--blue-900);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
  white-space: nowrap;
}
.chip-text {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 700;
}
.hero-visual { position: relative; }
.visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px;
  box-shadow: var(--shadow);
}
.visual-frame img {
  width: 100%;
  height: auto;
  border-radius: 23px;
}
.hero-frame img { min-height: 430px; object-fit: cover; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .25px;
  text-transform: uppercase;
}
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  gap: 60px;
  align-items: center;
}
.section-copy h2,
.section-head h2,
.quality-card h2,
.notice-card h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(29px, 2.8vw, 40px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -.01em;
}
.section-copy p,
.notice-card p,
.executive-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.95;
  font-weight: 600;
}
.section-head {
  max-width: 1180px;
  margin: 0 auto 44px;
  text-align: center;
}
@media (min-width: 1180px) {
  .section-head h2 { white-space: nowrap; }
}
.cards-grid { display: grid; gap: 18px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(48,166,81,.28); }
.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--blue-700), var(--green-600));
  color: #fff;
  font-weight: 900;
  margin-bottom: 17px;
}
.service-card h3 {
  margin: 0 0 10px;
  color: var(--blue-900);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 900;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 600;
}
.image-section { padding-top: 0; }
.visual-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.visual-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}
.visual-card img {
  width: 100%;
  height: 286px;
  object-fit: cover;
  background: #f4f9fc;
}
.visual-card h3 {
  margin: 0;
  padding: 20px 22px 24px;
  color: var(--blue-900);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 900;
}
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.category-pill {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  color: var(--blue-900);
  font-weight: 800;
  line-height: 1.75;
  box-shadow: 0 10px 24px rgba(5,45,68,.05);
}
.check-icon { color: var(--green-600); flex: 0 0 auto; font-weight: 900; }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 900;
  margin-bottom: 14px;
}
.step h3 { margin: 0 0 8px; color: var(--blue-900); font-size: 18px; line-height: 1.45; font-weight: 900; }
.step p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; font-weight: 600; }
.two-col-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.quality-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow);
}
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-inline-start: 32px; color: var(--muted); font-size: 17px; line-height: 1.95; font-weight: 600; }
.check-list li::before { content: "✓"; position: absolute; inset-inline-start: 0; top: 0; color: var(--green-600); font-weight: 900; }
.notice-card {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow);
}
.document-stack { position: relative; height: 210px; }
.document-stack span {
  position: absolute;
  width: 150px;
  height: 190px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(5,45,68,.10);
}
.document-stack span:nth-child(1) { inset-inline-start: 0; top: 20px; transform: rotate(-7deg); background: linear-gradient(180deg, #fff, #eef8ff); }
.document-stack span:nth-child(2) { inset-inline-start: 45px; top: 8px; transform: rotate(4deg); background: linear-gradient(180deg, #fff, #f0fbf3); }
.document-stack span:nth-child(3) { inset-inline-start: 92px; top: 34px; transform: rotate(10deg); background: linear-gradient(180deg, #fff, #f5fafc); }
.executive-card {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 26px;
  background: linear-gradient(180deg, #ffffff, #f8fcff);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 56px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.executive-card::after {
  content: "";
  position: absolute;
  inset-inline-end: -110px;
  bottom: -125px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(48,166,81,.14), transparent 65%);
}
.quote-mark { font-size: 88px; line-height: .88; color: rgba(48,166,81,.35); font-weight: 900; }
.executive-card p { position: relative; z-index: 1; font-size: clamp(18px, 1.35vw, 20px); line-height: 2.05; }
.executive-card .eyebrow { margin-bottom: 16px; font-size: clamp(22px, 1.65vw, 25px); line-height: 1.55; font-weight: 900; }
.contact-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(48,166,81,.16), transparent 35%),
    radial-gradient(circle at 88% 8%, rgba(22,125,175,.18), transparent 32%),
    linear-gradient(135deg, var(--blue-900), var(--blue-950));
  color: #fff;
}
.contact-wrap { max-width: 640px; }
.contact-head { margin-bottom: 24px; }
.contact-section .eyebrow { color: #75d68a; }
.contact-intro {
  margin: 10px auto 0;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.9;
  font-weight: 600;
  max-width: 720px;
}
.contact-card {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(100%, 580px);
  margin-inline: auto;
  background: #fff;
  color: var(--ink);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 24px 72px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.18);
}
.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row a { color: var(--blue-700); font-weight: 900; direction: ltr; unicode-bidi: isolate; }
.contact-label { color: var(--muted); font-weight: 900; }
.qr-block {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  width: min(100%, 255px);
  justify-self: center;
  padding: 14px;
  background: linear-gradient(135deg, #f7fbff, #f1fbf4);
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--blue-900);
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
}
.qr-link { display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; }
.qr-block img { width: 104px; border-radius: 12px; border: 5px solid #fff; box-shadow: 0 10px 22px rgba(5,45,68,.10); }
.floating-whatsapp {
  position: fixed;
  left: 24px;
  right: auto;
  inset-inline-start: auto;
  inset-inline-end: auto;
  bottom: 24px;
  z-index: 1200;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #061724;
  box-shadow: 0 18px 44px rgba(37, 211, 102, .38), 0 0 0 8px rgba(37, 211, 102, .16);
  border: 4px solid rgba(255,255,255,.95);
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 22px 52px rgba(37, 211, 102, .46), 0 0 0 10px rgba(37, 211, 102, .18); }
.floating-whatsapp svg { width: 35px; height: 35px; fill: currentColor; }
.site-footer { background: #071d2c; color: rgba(255,255,255,.76); padding: 36px 0 20px; }
 .footer-location-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 54px);
  flex-wrap: wrap;
}
.footer-logo-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
}
.footer-logo { width: 182px; filter: brightness(0) invert(1) opacity(.92); flex: 0 0 auto; }
.footer-address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 800;
  line-height: 1.9;
  white-space: nowrap;
}
.footer-address strong { color: #75d68a; font-weight: 900; }
.footer-map-qr {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  flex: 0 0 auto;
}
.footer-map-qr img {
  width: 72px;
  border-radius: 9px;
  border: 4px solid #fff;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.copyright { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 14px; color: rgba(255,255,255,.62); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 1180px) {
  .brand img { width: 164px; }
  .main-nav { gap: 12px; font-size: 13.5px; }
  .hero-grid, .split-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { max-width: 900px; }
  .hero-visual { max-width: 840px; margin-inline: auto; }
  .services-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .section-head h2 { white-space: normal; }
}
@media (max-width: 900px) {
  .container { width: min(100% - 32px, var(--container)); }
  .section-pad { padding: 72px 0; }
  .nav-wrap { min-height: 76px; justify-content: space-between; }
  .brand img { width: 145px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav {
    position: fixed;
    top: 76px;
    inset-inline: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 12px; border-radius: 12px; }
  .main-nav a:hover { background: var(--soft); }
  .main-nav a::after { display: none; }
  .hero h1 { font-size: clamp(40px, 10vw, 58px); }
  .hero-lead { font-size: 18px; line-height: 1.95; }
  .hero-frame img { min-height: 300px; }
  .hero-points, .visual-grid, .services-grid, .category-grid, .two-col-cards, .timeline, .footer-location-grid { grid-template-columns: 1fr; }
  .notice-card { grid-template-columns: 1fr; }
  .document-stack { display: none; }
  .executive-card { grid-template-columns: 1fr; }
  .quote-mark { font-size: 70px; }
  .contact-card { width: min(100%, 560px); padding: 24px; }
  .contact-row { align-items: flex-start; flex-direction: column; gap: 5px; }
}
@media (max-width: 900px) {
  .footer-location-grid { text-align: center; gap: 20px; }
  .footer-logo-address { align-items: center; justify-content: center; }
  .footer-address { white-space: normal; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 26px, var(--container)); }
  .hero h1 { font-size: 38px; }
  .section-copy h2, .section-head h2, .quality-card h2, .notice-card h2 { font-size: 28px; }
  .hero-points article, .service-card, .quality-card, .notice-card { padding: 22px; }
  .visual-frame { padding: 10px; border-radius: 24px; }
  .visual-card img { height: 220px; }
  .qr-block { width: min(100%, 240px); }
  .qr-block img { width: 100px; margin-inline: auto; }
  .footer-logo-address { flex-direction: column; align-items: center; text-align: center; gap: 18px; }
  .footer-address { justify-content: center; flex-wrap: wrap; }
  .footer-map-qr img { width: 68px; }
  .floating-whatsapp { width: 58px; height: 58px; bottom: 18px; left: 18px; right: auto; inset-inline-start: auto; inset-inline-end: auto; }
  .floating-whatsapp svg { width: 31px; height: 31px; }
}


/* v9 requested layout fix: contact card narrower; WhatsApp QR centered; footer logo/address/location QR in one row */
.contact-section .contact-wrap { max-width: 590px !important; margin-inline: auto !important; }
.contact-section .contact-card { width: min(100%, 540px) !important; max-width: 540px !important; margin-inline: auto !important; padding: 26px !important; box-sizing: border-box !important; }
.contact-section .qr-block, .contact-section .qr-block.qr-block-centered { width: 230px !important; max-width: 230px !important; margin: 18px auto 0 !important; justify-self: center !important; align-self: center !important; display: grid !important; justify-items: center !important; place-items: center !important; text-align: center !important; gap: 10px !important; padding: 16px !important; }
.contact-section .qr-link { display: inline-flex !important; justify-content: center !important; align-items: center !important; margin-inline: auto !important; }
.contact-section .qr-block img { width: 116px !important; height: 116px !important; object-fit: contain !important; margin-inline: auto !important; }
.site-footer .footer-location-grid, .site-footer .footer-location-row { display: flex !important; flex-direction: row !important; align-items: center !important; justify-content: center !important; flex-wrap: nowrap !important; gap: 18px !important; text-align: start !important; }
.site-footer .footer-logo-address { display: contents !important; }
.site-footer .footer-logo { width: 150px !important; max-width: 150px !important; height: auto !important; flex: 0 0 auto !important; }
.site-footer .footer-address { display: block !important; max-width: 430px !important; white-space: normal !important; line-height: 1.8 !important; font-size: 17px !important; flex: 0 1 auto !important; }
.site-footer .footer-map-qr { display: grid !important; justify-items: center !important; align-items: center !important; gap: 5px !important; flex: 0 0 auto !important; text-align: center !important; font-size: 11px !important; line-height: 1.3 !important; color: #fff !important; }
.site-footer .footer-map-qr img { width: 62px !important; height: 62px !important; max-width: 62px !important; max-height: 62px !important; object-fit: contain !important; border-radius: 8px !important; border: 3px solid #fff !important; background: #fff !important; }
@media (max-width: 700px) {
  .contact-section .contact-wrap { max-width: calc(100% - 26px) !important; }
  .contact-section .contact-card { width: min(100%, 500px) !important; max-width: 500px !important; }
  .site-footer .footer-location-grid, .site-footer .footer-location-row { gap: 10px !important; justify-content: center !important; flex-wrap: nowrap !important; overflow-x: auto !important; padding-inline: 4px !important; }
  .site-footer .footer-logo { width: 116px !important; max-width: 116px !important; }
  .site-footer .footer-address { max-width: 250px !important; font-size: 12.5px !important; line-height: 1.7 !important; }
  .site-footer .footer-map-qr { font-size: 9.5px !important; min-width: 62px !important; }
  .site-footer .footer-map-qr img { width: 54px !important; height: 54px !important; max-width: 54px !important; max-height: 54px !important; border-width: 2px !important; }
}
@media (max-width: 420px) {
  .site-footer .footer-logo { width: 96px !important; max-width: 96px !important; }
  .site-footer .footer-address { max-width: 190px !important; font-size: 11.5px !important; }
  .site-footer .footer-map-qr img { width: 50px !important; height: 50px !important; max-width: 50px !important; max-height: 50px !important; }
  .site-footer .footer-map-qr span { display: none !important; }
}


/* v10 final requested corrections: footer address one line; floating WhatsApp icon Arabic-left / English-right */
.site-footer .footer-location-grid,
.site-footer .footer-location-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
  text-align: start !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding-bottom: 4px !important;
}
.site-footer .footer-address {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  max-width: none !important;
  width: auto !important;
  min-width: max-content !important;
  white-space: nowrap !important;
  line-height: 1.45 !important;
  font-size: clamp(16px, 1.7vw, 24px) !important;
  flex: 0 0 auto !important;
}
.site-footer .footer-address *,
.site-footer .footer-address .lang-ar,
.site-footer .footer-address .lang-en {
  white-space: nowrap !important;
}
body[data-lang="ar"] .floating-whatsapp {
  left: 24px !important;
  right: auto !important;
  inset-inline-start: auto !important;
  inset-inline-end: auto !important;
}
body[data-lang="en"] .floating-whatsapp {
  right: 24px !important;
  left: auto !important;
  inset-inline-start: auto !important;
  inset-inline-end: auto !important;
}
@media (max-width: 700px) {
  .site-footer .footer-location-grid,
  .site-footer .footer-location-row {
    justify-content: flex-start !important;
    gap: 12px !important;
  }
  .site-footer .footer-address {
    max-width: none !important;
    min-width: max-content !important;
    white-space: nowrap !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
  }
  body[data-lang="ar"] .floating-whatsapp { left: 18px !important; right: auto !important; }
  body[data-lang="en"] .floating-whatsapp { right: 18px !important; left: auto !important; }
}
@media (max-width: 420px) {
  .site-footer .footer-address {
    max-width: none !important;
    min-width: max-content !important;
    white-space: nowrap !important;
    font-size: 11.5px !important;
  }
}


/* v11 definitive override: floating WhatsApp side by selected language */
.floating-whatsapp,
body[data-lang="ar"] .floating-whatsapp,
html[dir="rtl"] .floating-whatsapp {
  position: fixed !important;
  left: 24px !important;
  right: auto !important;
  bottom: 24px !important;
  inset-inline-start: auto !important;
  inset-inline-end: auto !important;
}
body[data-lang="en"] .floating-whatsapp,
html[dir="ltr"] .floating-whatsapp {
  position: fixed !important;
  right: 24px !important;
  left: auto !important;
  bottom: 24px !important;
  inset-inline-start: auto !important;
  inset-inline-end: auto !important;
}
@media (max-width: 700px) {
  .floating-whatsapp,
  body[data-lang="ar"] .floating-whatsapp,
  html[dir="rtl"] .floating-whatsapp {
    left: 18px !important;
    right: auto !important;
    bottom: 18px !important;
    inset-inline-start: auto !important;
    inset-inline-end: auto !important;
  }
  body[data-lang="en"] .floating-whatsapp,
  html[dir="ltr"] .floating-whatsapp {
    right: 18px !important;
    left: auto !important;
    bottom: 18px !important;
    inset-inline-start: auto !important;
    inset-inline-end: auto !important;
  }
}


/* v12 headline line-fit fix: reduce only the photographed Arabic headings enough to keep them on one line on desktop/tablet widths */
body[data-lang="ar"] .hero h1 {
  font-size: clamp(42px, 4.45vw, 64px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.018em !important;
}
body[data-lang="ar"] .section-copy h2,
body[data-lang="ar"] .section-head h2,
body[data-lang="ar"] .notice-card h2 {
  font-size: clamp(25px, 2.05vw, 32px) !important;
  line-height: 1.32 !important;
}
body[data-lang="ar"] .quality-card h2 {
  font-size: clamp(24px, 1.78vw, 29px) !important;
  line-height: 1.34 !important;
}
@media (min-width: 760px) {
  body[data-lang="ar"] .hero h1 .lang-ar,
  body[data-lang="ar"] .section-copy h2 .lang-ar,
  body[data-lang="ar"] .section-head h2 .lang-ar,
  body[data-lang="ar"] .quality-card h2 .lang-ar,
  body[data-lang="ar"] .notice-card h2 .lang-ar {
    white-space: nowrap !important;
  }
  body[data-lang="ar"] .quality-card h2 {
    letter-spacing: -0.012em !important;
  }
}
@media (max-width: 900px) {
  body[data-lang="ar"] .hero h1 {
    font-size: clamp(38px, 6.5vw, 54px) !important;
  }
  body[data-lang="ar"] .section-copy h2,
  body[data-lang="ar"] .section-head h2,
  body[data-lang="ar"] .notice-card h2 {
    font-size: clamp(23px, 4vw, 29px) !important;
  }
  body[data-lang="ar"] .quality-card h2 {
    font-size: clamp(23px, 3.8vw, 28px) !important;
  }
}
@media (max-width: 759px) {
  body[data-lang="ar"] .hero h1 .lang-ar,
  body[data-lang="ar"] .section-copy h2 .lang-ar,
  body[data-lang="ar"] .section-head h2 .lang-ar,
  body[data-lang="ar"] .quality-card h2 .lang-ar,
  body[data-lang="ar"] .notice-card h2 .lang-ar {
    white-space: normal !important;
  }
}
