:root {
  --ink: #0b0b0b;
  --muted: #626262;
  --line: #dedede;
  --navy: #0b0b0b;
  --navy-soft: #f4f4f4;
  --gold: #8f7135;
  --gold-soft: #f4f1ea;
  --paper: #ffffff;
  --wash: #f7f7f7;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Cairo", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.brand span {
  display: grid;
  min-width: 0;
}

.brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  color: var(--navy);
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--wash);
}

.language-switch button {
  min-width: 54px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button.active {
  color: white;
  background: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(520px, 1.1fr) minmax(360px, 0.78fr) minmax(280px, 340px);
  grid-template-areas:
    "copy overview card"
    "copy capabilities card";
  gap: clamp(32px, 4.5vw, 84px);
  align-items: center;
  min-height: auto;
  max-width: none;
  margin: 0 auto;
  padding: clamp(52px, 6vw, 86px) clamp(44px, 7vw, 128px);
  background: #ffffff;
}

.hero-overview {
  grid-area: overview;
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

.company-lines {
  display: grid;
  gap: 8px;
}

.company-name-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  direction: ltr;
}

.company-lines strong,
.company-lines span[lang] {
  color: var(--ink);
  font-family: "Cairo", Arial, Helvetica, sans-serif;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.company-name-main strong {
  font-size: clamp(28px, 2.8vw, 42px);
}

.company-name-secondary span[lang] {
  font-size: clamp(24px, 2.3vw, 34px);
}

.company-name-english span {
  color: #2f2f2f;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 800;
  letter-spacing: 0;
}

.market-badge {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 26px;
  padding: 0 10px;
  border: 1px solid #111111;
  border-radius: 999px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: inset 0 -2px 0 rgba(177, 132, 47, 0.24);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.vision-text {
  max-width: 600px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.hero-tags span {
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.hero-copy {
  grid-area: copy;
  align-self: center;
  padding-top: 0;
  max-width: 760px;
}

.hero-capabilities {
  grid-area: capabilities;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-self: start;
}

.hero-capabilities article {
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
}

.hero-capabilities strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.hero-capabilities span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(46px, 5.2vw, 82px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-text {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--navy);
}

.button.ghost {
  color: var(--navy);
  background: transparent;
}

.button.whatsapp {
  color: white;
  border-color: #111;
  background: #111;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: white;
  font-weight: 800;
}

.hero-card {
  grid-area: card;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 100%;
  max-width: 340px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-card img {
  width: min(185px, 55vw);
  aspect-ratio: 1;
  object-fit: contain;
}

.hero-card strong {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
}

.hero-card span {
  color: var(--muted);
  font-weight: 800;
}

.hero-card a {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  color: white;
  background: #111;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: #0b0b0b;
  color: white;
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 56px);
  border-right: 1px solid rgba(255,255,255,0.16);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 22px;
  font-weight: 800;
}

.trust-strip span {
  color: rgba(255,255,255,0.72);
}

.section,
.split-section {
  padding: clamp(48px, 7vw, 88px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  min-height: 330px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.service-card span {
  color: var(--gold);
  font-weight: 800;
}

.service-card h3 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-inline-start: 18px;
  color: #323232;
  font-size: 14px;
  line-height: 1.55;
}

.service-card li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--wash);
}

.about-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.about-copy p {
  color: var(--muted);
  font-size: 17px;
}

.about-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.about-copy li {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: white;
}

.registration-section {
  background: white;
  padding-top: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(30px, 4.5vw, 52px);
}

.registration-section .section-heading {
  max-width: 620px;
  margin-bottom: 18px;
}

.registration-section h2 {
  font-size: clamp(24px, 2.35vw, 34px);
  line-height: 1.22;
}

.registration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.registration-card {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy-soft);
}

.registration-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.registration-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.registration-card dl div {
  display: grid;
  gap: 4px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(6, 41, 90, 0.12);
}

.registration-card dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.registration-card dt {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.registration-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.registration-card dd[dir="ltr"] {
  direction: ltr;
  unicode-bidi: isolate;
}

body[dir="rtl"] .registration-card dd[dir="ltr"] {
  text-align: right;
}

body[dir="ltr"] .registration-card dd[dir="ltr"] {
  text-align: left;
}

.inquiry-section {
  background: var(--wash);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #c8d1dc;
  border-radius: 6px;
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, auto);
  gap: 28px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: white;
  background: #0d1116;
}

.site-footer img {
  width: 58px;
  height: 58px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: white;
}

.site-footer > div strong,
.site-footer > div span {
  display: block;
}

address {
  display: grid;
  gap: 9px;
  color: rgba(255,255,255,0.78);
  font-style: normal;
}

.site-footer .contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
}

.site-footer .contact-link:hover {
  color: #ffffff;
}

.site-footer .contact-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 -2px 0 rgba(177, 132, 47, 0.34);
}

.site-footer .contact-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[dir="rtl"] {
  font-family: "Cairo", Arial, Helvetica, sans-serif;
}

body[dir="rtl"] h1,
body[dir="rtl"] h2,
body[dir="rtl"] h3,
body[dir="rtl"] .brand strong,
body[dir="rtl"] .company-lines strong {
  font-family: "Cairo", Arial, Helvetica, sans-serif;
}

body[dir="rtl"] .company-lines strong,
body[dir="rtl"] .company-lines span[lang] {
  font-family: "Cairo", Arial, Helvetica, sans-serif;
}

body[dir="rtl"] .company-name-line {
  justify-content: flex-end;
}

body[dir="rtl"] .hero-overview {
  text-align: right;
}

body[dir="rtl"] h1 {
  max-width: 700px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.24;
  font-weight: 800;
}

body[dir="rtl"] h2 {
  max-width: 720px;
  font-size: clamp(26px, 2.9vw, 40px);
  line-height: 1.34;
  font-weight: 800;
}

body[dir="rtl"] p,
body[dir="rtl"] li,
body[dir="rtl"] input,
body[dir="rtl"] select,
body[dir="rtl"] textarea {
  font-weight: 500;
}

body[dir="rtl"] .about-copy li {
  border-left: 0;
  border-right: 4px solid var(--gold);
}

body[dir="rtl"] .trust-strip div {
  border-right: 0;
  border-left: 1px solid rgba(255,255,255,0.16);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 12px;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "overview"
      "copy"
      "capabilities"
      "card";
  }

  .hero {
    padding-inline: clamp(18px, 5vw, 44px);
  }

  .hero-overview {
    margin-inline-start: 0;
  }

  .hero-card {
    max-width: 420px;
  }

  .about-media img {
    height: 420px;
    min-height: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .registration-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

  nav {
    overflow-x: auto;
    justify-content: start;
    padding-bottom: 4px;
  }

  h1 {
    font-size: 38px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-capabilities {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: center;
    max-width: 320px;
    padding: 22px;
  }

  .hero-card img {
    width: 150px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 auto;
  }

  .trust-strip,
  .service-grid,
  .inquiry-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .about-media img {
    height: 320px;
  }

}
