:root {
  --navy: #071426;
  --navy-soft: #0d2038;
  --white: #ffffff;
  --off-white: #f6f3ee;
  --muted: #bfc7d2;
  --gold: #f5a018;
  --line: rgba(255,255,255,.22);
  --dark-line: rgba(7,20,38,.14);
  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: var(--off-white);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px clamp(22px, 5vw, 72px);
  color: var(--white);
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7,20,38,.86);
  backdrop-filter: blur(14px);
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom-color: rgba(255,255,255,.08);
}
.brand img { width: 188px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 42px; }
.main-nav a {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.main-nav a:hover::after { width: 100%; }
.menu-toggle { display: none; background: none; border: 0; width: 34px; height: 24px; }
.menu-toggle span { display:block; height:1px; background:#fff; margin:8px 0; }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.hero-slider, .hero-slide, .hero-overlay { position:absolute; inset:0; }
.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 7s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-overlay-top {
  background: linear-gradient(to bottom, rgba(0,0,0,.78) 0%, rgba(0,0,0,.48) 18%, rgba(0,0,0,.08) 44%, rgba(0,0,0,.16) 100%);
  z-index: 2;
}
.hero-overlay-left {
  background: linear-gradient(90deg, rgba(3,10,20,.9) 0%, rgba(3,10,20,.68) 30%, rgba(3,10,20,.2) 58%, rgba(3,10,20,.04) 100%);
  z-index: 3;
}
.hero-content {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 130px clamp(22px, 5vw, 72px) 80px;
}
.hero-content > * { max-width: min(790px, 52vw); }
.eyebrow, .section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(40px, 5.8vw, 78px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 300;
}
.hero-copy {
  max-width: 530px;
  margin-top: 28px;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
}
.hero-actions { display:flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); border-color: var(--gold); color: #101010; }
.btn-secondary { color: var(--white); background: rgba(255,255,255,.04); }
.btn-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.slider-dots {
  position:absolute;
  z-index: 8;
  right: clamp(22px, 5vw, 72px);
  bottom: 42px;
  display:flex;
  gap: 10px;
}
.slider-dots button {
  width: 34px;
  height: 2px;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}
.slider-dots button.is-active { background: var(--gold); }

.intro-section, .sectors-section, .catalogues-section, .inquiry-section, .factory-section {
  padding: 110px clamp(22px, 5vw, 72px);
  max-width: var(--max);
  margin: 0 auto;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.intro-grid h2, .catalogue-panel h2, .inquiry-panel h2 {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 300;
}
.intro-grid p {
  font-size: 18px;
  line-height: 1.9;
  color: #425065;
}
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--dark-line);
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}
.mission-vision-item {
  background: var(--off-white);
  padding: 36px 34px;
}
.mission-vision-item span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.mission-vision-item p {
  color: #425065;
  font-size: 16px;
  line-height: 1.8;
}
.factory-section { padding-top: 30px; }
.factory-panel {
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  padding: 58px 0;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}
.factory-panel h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 300;
}
.factory-panel p {
  color: #425065;
  font-size: 17px;
  line-height: 1.9;
}
.sectors-section { padding-top: 30px; }
.sector-list { border-top: 1px solid var(--dark-line); }
.sector-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  grid-template-areas:
    "number text"
    "number belt";
  gap: 18px 34px;
  padding: 38px 0 44px;
  border-bottom: 1px solid var(--dark-line);
  align-items: start;
  position: relative;
  overflow: hidden;
}
.sector-number { grid-area: number; color: var(--gold); font-weight: 700; padding-top: 8px; }
.sector-text { grid-area: text; max-width: 680px; }
.sector-list h3 { font-size: clamp(28px, 3.2vw, 46px); font-weight: 500; letter-spacing: -.02em; }
.sector-list p { color: #526176; line-height: 1.7; margin-top: 8px; max-width: 520px; }
.sector-item::after {
  content: 'View catalogue';
  position: absolute;
  right: 0;
  top: 52px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: .72;
  transition: opacity .3s ease, transform .3s ease;
}
.sector-item:hover::after { opacity: 1; transform: translateX(0); }
.sector-belt {
  grid-area: belt;
  height: 118px;
  width: min(900px, 100%);
  overflow: hidden;
  position: relative;
  background: transparent;
  margin-top: 16px;
}
.sector-belt::before, .sector-belt::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22%;
  z-index: 2;
  pointer-events: none;
}
.sector-belt::before { left: 0; background: linear-gradient(90deg, var(--off-white), rgba(246,243,238,0)); }
.sector-belt::after { right: 0; background: linear-gradient(270deg, var(--off-white), rgba(246,243,238,0)); }
.belt-track {
  height: 100%;
  display: flex;
  gap: 18px;
  width: max-content;
  animation: beltSlide 18s ease-in-out infinite alternate;
}
.belt-track img {
  width: 205px;
  height: 118px;
  object-fit: cover;
  filter: saturate(.88) contrast(.95);
  opacity: .72;
  transition: opacity .3s ease, transform .3s ease;
}
.sector-item:hover .belt-track img { opacity: 1; }
.sector-item:hover .belt-track { animation-play-state: paused; }
@keyframes beltSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-440px); }
}
.catalogue-panel, .inquiry-panel {
  background: var(--white);
  border-top: 4px solid var(--gold);
  padding: clamp(34px, 5vw, 72px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 40px;
  box-shadow: 0 30px 80px rgba(7,20,38,.08);
}
.inquiry-panel p {
  max-width: 680px;
  margin-top: 20px;
  color: #425065;
  font-size: 17px;
  line-height: 1.8;
}
.catalogue-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.catalogue-links a {
  border-bottom: 1px solid var(--gold);
  color: #425065;
  padding-bottom: 6px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.76);
  padding: 58px clamp(22px, 5vw, 72px) 24px;
  font-size: 14px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .8fr .9fr;
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { display: inline-flex; align-items: center; margin-bottom: 22px; }
.footer-brand img { width: 176px; height: auto; display: block; }
.footer-brand-block p {
  max-width: 430px;
  line-height: 1.8;
  color: rgba(255,255,255,.68);
}
.footer-column { display: flex; flex-direction: column; gap: 13px; }
.footer-column h3 {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.footer-column a {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.footer-contact a { text-transform: none; letter-spacing: .04em; }
.footer-column a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max);
  margin: 22px auto 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.55);
  font-size: 13px;
}
html[dir="rtl"] .site-footer { direction: rtl; text-align: right; }
@media (max-width: 860px) {
  .site-footer { padding-top: 46px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; padding-bottom: 32px; }
  .footer-brand img { width: 154px; }
  .footer-column a { font-size: 12px; }
}

@media (min-width: 1025px) {
  .hero-content {
    padding-left: 34px;
    align-items: flex-start;
  }
  .hero-content > * { max-width: 760px; }
}

@media (max-width: 860px) {
  body.menu-open { overflow: hidden; }
  .site-header { z-index: 100; }
  .brand img { width: 150px; }
  .menu-toggle { display: block; position: relative; z-index: 120; cursor: pointer; }
  .menu-toggle span { transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    z-index: 90;
    background: rgba(7,20,38,.98);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 34px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .28s ease, transform .28s ease, visibility 0s linear .28s;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .main-nav a { font-size: 14px; letter-spacing: .2em; }
  .mission-vision-grid { margin-top: 42px; }
  .mission-vision-item { padding: 28px 0; }
  .hero-content { padding-top: 120px; }
  .hero-overlay-left { background: linear-gradient(90deg, rgba(3,10,20,.88), rgba(3,10,20,.42)); }
  .intro-grid, .catalogue-panel, .inquiry-panel, .factory-panel, .mission-vision-grid { grid-template-columns: 1fr; display: grid; }
  .catalogue-panel, .inquiry-panel { align-items: start; }
  .hero-content > * { max-width: 100%; }
  .sector-item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "number"
      "text"
      "belt";
    gap: 12px;
  }
  .sector-belt { height: 94px; width: 100%; }
  .belt-track { gap: 14px; }
  .belt-track img { width: 168px; height: 94px; }
  .sector-item::after { position: static; opacity: 1; transform: none; margin-top: 8px; }
}

.clients-block {
  margin-top: 74px;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  padding: 34px 0 38px;
  overflow: hidden;
}
.clients-header {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: flex-end;
  margin-bottom: 30px;
}
.clients-header span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 600;
}
.clients-header p {
  max-width: 520px;
  color: #526176;
  font-size: 15px;
  line-height: 1.7;
  text-align: right;
}
.clients-belt {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.clients-belt::before,
.clients-belt::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  z-index: 2;
  pointer-events: none;
}
.clients-belt::before { left: 0; background: linear-gradient(90deg, var(--off-white), rgba(246,243,238,0)); }
.clients-belt::after { right: 0; background: linear-gradient(270deg, var(--off-white), rgba(246,243,238,0)); }
.clients-track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: clientsSlide 24s linear infinite;
}
.clients-track .client-logo {
  width: 168px;
  height: 72px;
  padding: 12px 18px;
  border: 1px solid rgba(7,20,38,.16);
  border-radius: 2px;
  background: rgba(255,255,255,.55);
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
  filter: saturate(.95) contrast(1.02);
}
@keyframes clientsSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 860px) {
  .clients-block { margin-top: 46px; padding: 28px 0 32px; }
  .clients-header { display: block; margin-bottom: 24px; }
  .clients-header p { text-align: left; margin-top: 12px; }
  .clients-track { gap: 16px; animation-duration: 18s; }
  .clients-track .client-logo { width: 138px; height: 62px; padding: 10px 14px; }
}

/* Dedicated factory page placeholder */
.factory-page-hero {
  min-height: 100vh;
  padding: 170px clamp(22px, 5vw, 72px) 90px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.factory-page-hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 300;
  margin-bottom: 22px;
}
.factory-page-hero p {
  max-width: 680px;
  color: #425065;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 34px;
}
.clients-header { justify-content: flex-start; }

/* Header dropdowns + language switcher */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-toggle {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0;
  position: relative;
}
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after { width: 100%; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  min-width: 160px;
  background: rgba(7,20,38,.96);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 50px rgba(0,0,0,.24);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
}
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav-dropdown-menu a,
.nav-dropdown-menu button {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.9);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: left;
  padding: 12px 14px;
  white-space: nowrap;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover,
.nav-dropdown-menu button:hover { background: rgba(255,255,255,.08); color: var(--gold); }
.globe-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.globe-icon { font-size: 16px; line-height: 1; }
html[dir="rtl"] body { font-family: 'Cairo', 'Montserrat', system-ui, sans-serif; }
html[dir="rtl"] .main-nav,
html[dir="rtl"] .hero-actions { direction: rtl; }
html[dir="rtl"] .hero-content { text-align: right; align-items: flex-end; }
html[dir="rtl"] .hero-content > * { margin-left: 0; }
html[dir="rtl"] .intro-grid,
html[dir="rtl"] .mission-vision-grid,
html[dir="rtl"] .inquiry-panel,
html[dir="rtl"] .factory-page-hero { direction: rtl; text-align: right; }
html[dir="rtl"] .sector-item { direction: rtl; grid-template-columns: 1fr 82px; grid-template-areas: "text number" "belt number"; }
html[dir="rtl"] .sector-item::after { right: auto; left: 0; content: 'عرض الكتالوج'; }
html[dir="rtl"] .nav-dropdown-menu { right: auto; left: 0; }
html[dir="rtl"] .nav-dropdown-menu a,
html[dir="rtl"] .nav-dropdown-menu button { text-align: right; }

@media (max-width: 860px) {
  .main-nav .nav-dropdown { flex-direction: column; }
  .nav-dropdown-toggle { font-size: 14px; letter-spacing: .2em; }
  .nav-dropdown-menu {
    position: static;
    min-width: 190px;
    margin-top: 14px;
    background: rgba(255,255,255,.06);
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.is-open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a,
  .nav-dropdown-menu button { text-align: center; }
  html[dir="rtl"] .nav-dropdown-menu a,
  html[dir="rtl"] .nav-dropdown-menu button { text-align: center; }
}

/* Smooth desktop dropdown hover bridge + mobile language shortcut */
.mobile-header-actions { display: none; }

@media (min-width: 861px) {
  .nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: max(100%, 170px);
    height: 24px;
    display: block;
  }
  .nav-dropdown-menu { top: calc(100% + 12px); }
}

@media (max-width: 860px) {
  .site-header { gap: 18px; }
  .mobile-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    position: relative;
    z-index: 140;
  }
  .main-nav > .language-dropdown { display: none; }
  .mobile-language-dropdown { display: inline-flex; position: relative; }
  .mobile-language-dropdown .nav-dropdown-toggle {
    font-size: 12px;
    letter-spacing: .12em;
    min-height: 34px;
  }
  .mobile-language-dropdown .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    min-width: 150px;
    margin-top: 0;
    background: rgba(7,20,38,.98);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 16px 38px rgba(0,0,0,.24);
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  }
  .mobile-language-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .mobile-language-dropdown .nav-dropdown-menu button { text-align: center; }
  html[dir="rtl"] .mobile-header-actions { margin-left: 0; margin-right: auto; }
  html[dir="rtl"] .mobile-language-dropdown .nav-dropdown-menu { right: auto; left: 0; }
}


/* Catalogue detail pages */
.catalogue-detail-hero {
  min-height: 86vh;
  padding: 150px clamp(22px, 5vw, 72px) 90px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  background: linear-gradient(135deg, var(--off-white) 0%, #ffffff 54%, #ece7de 100%);
  color: var(--navy);
  border-bottom: 1px solid var(--dark-line);
}
.catalogue-detail-content h1 {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 300;
  margin: 20px 0 24px;
  color: #071426;
}
.catalogue-detail-content p {
  max-width: 640px;
  color: rgba(7,20,38,.72);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.8;
  font-weight: 300;
}
.catalogue-detail-image {
  border-radius: 0;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(7,20,38,.14);
  box-shadow: 22px 22px 0 rgba(7,20,38,.10);
}
.catalogue-detail-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.catalogue-detail-section {
  padding: 95px clamp(22px, 5vw, 72px);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(36px, 5vw, 72px);
  background: var(--navy);
  color: var(--white);
}
.catalogue-detail-section h2 {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(34px,4.6vw,62px);
  letter-spacing: -.045em;
  font-weight: 300;
  line-height: 1;
  margin: 14px 0 24px;
  color: var(--white);
}
.catalogue-detail-section p { color: rgba(255,255,255,.68); line-height: 1.85; font-size: 17px; font-weight: 300; }
.catalogue-detail-list { list-style: none; display: grid; gap: 0; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.16); }
.catalogue-detail-list li {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  padding: 22px 0;
  border-radius: 0;
  color: rgba(255,255,255,.92);
  font-weight: 500;
  box-shadow: none;
}
.catalogue-detail-grid {
  padding: 0 clamp(22px, 5vw, 72px) 95px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.catalogue-detail-card {
  background: transparent;
  border-radius: 0;
  padding: 30px 24px;
  min-height: 158px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.18);
  border-right: 1px solid rgba(255,255,255,.12);
}
.catalogue-detail-card:last-child { border-right: 0; }
.catalogue-detail-card span { color: var(--gold); font-weight: 600; font-size: 12px; letter-spacing: .22em; }
.catalogue-detail-card p { margin-top: 36px; color: rgba(255,255,255,.9); font-weight: 500; font-size: 17px; line-height: 1.45; }
.inquiry-section { background: var(--off-white); }
.inquiry-panel { border-radius: 0; background: #ffffff; border: 1px solid var(--dark-line); box-shadow: none; }
html[dir="rtl"] .catalogue-detail-hero, html[dir="rtl"] .catalogue-detail-section, html[dir="rtl"] .catalogue-detail-grid { direction: rtl; text-align: right; }
@media (max-width: 900px) {
  .catalogue-detail-hero, .catalogue-detail-section { grid-template-columns: 1fr; padding-left: 6%; padding-right: 6%; }
  .catalogue-detail-image { min-height: 360px; box-shadow: 12px 12px 0 rgba(7,20,38,.10); }
  .catalogue-detail-grid { grid-template-columns: 1fr; padding-left: 6%; padding-right: 6%; }
  .catalogue-detail-card { border-right: 0; }
}

/* Arabic hero layout: move the translated hero copy to the right-side section */
html[dir="rtl"] .hero-overlay-left {
  background: linear-gradient(270deg, rgba(3,10,20,.9) 0%, rgba(3,10,20,.68) 30%, rgba(3,10,20,.2) 58%, rgba(3,10,20,.04) 100%);
}

html[dir="rtl"] .hero-content {
  direction: rtl;
  text-align: right;
  align-items: flex-end;
}

html[dir="rtl"] .hero-content > * {
  margin-right: 0;
  margin-left: auto;
}

@media (min-width: 1025px) {
  html[dir="rtl"] .hero-content {
    padding-right: clamp(34px, 5vw, 72px);
    padding-left: 48vw;
  }
}

@media (max-width: 860px) {
  html[dir="rtl"] .hero-overlay-left {
    background: linear-gradient(270deg, rgba(3,10,20,.88), rgba(3,10,20,.42));
  }
  html[dir="rtl"] .hero-content {
    padding-left: clamp(22px, 5vw, 72px);
    padding-right: clamp(22px, 5vw, 72px);
  }
}


/* Search-focused supporting content */
.seo-section { padding: 90px clamp(22px, 5vw, 72px); background: #fff; border-top: 1px solid var(--dark-line); }
.seo-intro-grid { display:grid; grid-template-columns:1fr 1fr; gap: clamp(32px,6vw,90px); margin-top:30px; }
.seo-intro-grid h2 { font-size:clamp(34px,4vw,60px); line-height:1.05; letter-spacing:-.04em; font-weight:400; }
.seo-intro-grid p, .faq-grid p { line-height:1.8; color:#4d5560; }
.seo-intro-grid p + p { margin-top:16px; }
.seo-links { display:grid; grid-template-columns:repeat(4,1fr); margin-top:55px; border-top:1px solid var(--dark-line); border-left:1px solid var(--dark-line); }
.seo-links a { padding:24px; border-right:1px solid var(--dark-line); border-bottom:1px solid var(--dark-line); font-weight:600; }
.faq-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0; margin-top:55px; border-top:1px solid var(--dark-line); }
.faq-grid article { padding:28px 24px; border-right:1px solid var(--dark-line); border-bottom:1px solid var(--dark-line); }
.faq-grid article:last-child { border-right:0; }
.faq-grid h3 { font-size:18px; margin-bottom:14px; }
.factory-process-grid { display:grid; grid-template-columns:repeat(4,1fr); width:100%; margin:45px 0; border-top:1px solid var(--dark-line); border-left:1px solid var(--dark-line); }
.factory-process-grid article { padding:28px 22px; border-right:1px solid var(--dark-line); border-bottom:1px solid var(--dark-line); }
.factory-process-grid span { color:var(--gold); font-size:12px; letter-spacing:.2em; }
.factory-process-grid h2 { font-size:21px; margin:24px 0 12px; }
.factory-process-grid p { line-height:1.7; }
@media(max-width:900px){.seo-intro-grid,.seo-links,.faq-grid,.factory-process-grid{grid-template-columns:1fr}.faq-grid article{border-right:0}}
