:root {
  --ink: #142047;
  --muted: #5f6680;
  --line: #dfe6ea;
  --paper: #ffffff;
  --soft: #f4f8f8;
  --teal: #078c8c;
  --teal-dark: #046f75;
  --blue: #26398a;
  --rose: #f14b8c;
  --yellow: #f6c343;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(20, 32, 71, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.is-arabic {
  font-family: "Droid Sans Arabic", Dubai, "Segoe UI", Tahoma, Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 230, 234, 0.78);
  backdrop-filter: blur(14px);
}

.brand img {
  width: min(270px, 52vw);
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 3;
}

.language-switch {
  min-width: 88px;
  min-height: 42px;
  padding: 9px 12px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  order: 2;
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--teal-dark);
  border-bottom-color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(44px, 7vw, 94px) clamp(18px, 5vw, 72px) 34px;
  background:
    linear-gradient(115deg, rgba(244, 248, 248, 0.98) 0%, rgba(255, 255, 255, 0.88) 54%, rgba(255, 255, 255, 0.5) 100%),
    url("AB1A2675 copy1.jpg.jpeg") center right / cover no-repeat;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.45rem, 5.5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 6px 0 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.company-name-alt,
.accent-copy {
  color: var(--blue);
  font-weight: 800;
}

body.is-arabic h1,
body.is-arabic h2,
body.is-arabic h3,
body.is-arabic .site-nav,
body.is-arabic .button,
body.is-arabic .company-name-alt,
body.is-arabic .accent-copy {
  font-family: "Droid Sans Arabic", Dubai, "Segoe UI", Tahoma, Arial, sans-serif;
  font-weight: 700;
}

.hero .company-name-alt {
  margin: 18px 0 14px;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
}

.hero-text {
  max-width: 620px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.09rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.button.primary {
  color: #fff;
  background: var(--teal-dark);
  box-shadow: 0 10px 28px rgba(4, 111, 117, 0.22);
}

.button.ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero-media {
  align-self: stretch;
  display: flex;
  align-items: start;
  justify-content: center;
  padding-top: clamp(0px, 2vw, 24px);
}

.hero-media img {
  width: min(820px, 100%);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  padding: 26px clamp(18px, 4vw, 44px);
  background: var(--paper);
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.intro-band span {
  color: var(--muted);
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.section-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

#about h2 {
  max-width: 680px;
  font-size: clamp(1.35rem, 2.15vw, 2.15rem);
  line-height: 1.28;
}

body.is-arabic #about h2 {
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  line-height: 1.65;
}

.image-pair {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.image-pair img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-pair img:first-child {
  min-height: 330px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-head p:last-child {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.products-section {
  background: var(--soft);
}

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

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--paper);
  border: 1px solid rgba(223, 230, 234, 0.85);
  border-radius: var(--radius);
}

.product-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
}

.product-card.featured img {
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  object-position: center;
}

.product-card div {
  padding: 18px;
}

.product-card span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card p,
.quality-card p {
  margin: 0;
  color: var(--muted);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.category-list span {
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
}

.brand-showcase {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.brand-showcase img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: var(--soft);
  border-radius: 6px;
}

.quality-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  background: #102344;
  color: #fff;
}

.quality-section .eyebrow {
  color: #7ee4dc;
}

.quality-copy p:not(.eyebrow),
.quality-points span,
.quality-card p {
  color: rgba(255, 255, 255, 0.78);
}

.quality-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.quality-points div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.quality-points strong,
.quality-points span {
  display: block;
}

.quality-points strong {
  margin-bottom: 4px;
}

.quality-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.quality-card img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.quality-card p {
  padding: 14px 4px 0;
  font-size: 0.92rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

#contact h2 {
  max-width: 640px;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.25;
}

body.is-arabic #contact h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.75rem);
  line-height: 1.6;
}

.address-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  background: var(--soft);
}

.address-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.address-line {
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 800;
}

.address-copy .button {
  margin-top: 10px;
}

.map-frame {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.contact-detail,
.contact-email {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.contact-email {
  margin-top: 8px;
}

.contact-detail a,
.contact-email a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.phone-number {
  unicode-bidi: isolate;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 34px 18px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: min(280px, 72vw);
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
}

html[dir="rtl"] .hero,
html[dir="rtl"] .split,
html[dir="rtl"] .quality-section,
html[dir="rtl"] .contact-section {
  direction: rtl;
}

html[dir="rtl"] .hero {
  background:
    linear-gradient(245deg, rgba(244, 248, 248, 0.98) 0%, rgba(255, 255, 255, 0.88) 54%, rgba(255, 255, 255, 0.5) 100%),
    url("AB1A2675 copy1.jpg.jpeg") center right / cover no-repeat;
}

html[dir="rtl"] .section-head {
  direction: rtl;
}

html[dir="rtl"] .product-card,
html[dir="rtl"] .brand-showcase,
html[dir="rtl"] .quality-card,
html[dir="rtl"] .intro-band {
  direction: rtl;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .quality-section,
  .address-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(244, 248, 248, 0.97) 0%, rgba(255, 255, 255, 0.84) 100%),
      url("AB1A2675 copy1.jpg.jpeg") center / cover no-repeat;
  }

  .hero-media {
    align-self: auto;
  }

  .intro-band {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section-head {
    display: block;
  }

  .section-head p:last-child {
    margin-top: 12px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .header-actions {
    margin-inline-start: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .intro-band,
  .product-grid,
  .image-pair {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    grid-column: auto;
    grid-row: auto;
  }

  .image-pair img,
  .image-pair img:first-child {
    min-height: 260px;
  }

  .hero {
    padding-top: 40px;
  }


  .hero-actions .button {
    width: 100%;
  }
}
