/* Aurum Polymer Solution Company theme */
:root {
  --color-bg: #fdf7ef;
  --color-bg-alt: #f8f1e7;
  --color-surface: #ffffff;
  --color-text: #1f2433;
  --color-muted: #5c6271;
  --color-accent: #f28c1a;
  --color-accent-strong: #d56a00;
  --color-accent-soft: #ffe2c2;
  --color-line: #e5d7c5;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-soft: 0 24px 50px rgb(213 134 35 / 18%);
  --shadow-lift: 0 30px 70px rgb(213 134 35 / 24%);
  --container-max: min(1200px, 92vw);
  --font-sans: "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: linear-gradient(180deg, #fffaf3 0%, var(--color-bg) 45%, #ffffff 100%);
  color: var(--color-text);
  line-height: 1.65;
}

body[data-locale="ar"] {
  direction: rtl;
}

body[data-locale="ar"] .nav,
body[data-locale="ar"] .nav-links,
body[data-locale="ar"] .mobile-nav__inner,
body[data-locale="ar"] .two-column,
body[data-locale="ar"] .process-grid,
body[data-locale="ar"] .contact-grid,
body[data-locale="ar"] .footer__grid {
  direction: rtl;
}

body[data-locale="ar"] .brand {
  text-transform: none;
}

body[data-locale="ar"] .brand__word {
  justify-content: flex-end;
}

body[data-locale="ar"] .brand__word span[data-locale="ar"] {
  padding-inline-end: 0.25rem;
  height: 44px;
  line-height: 44px;
}

body[data-locale="ar"] .nav-locale {
  margin-right: 0.75rem;
  margin-left: 0;
}

body[data-locale="ar"] .nav-links a,
body[data-locale="ar"] .mobile-nav__inner a,
body[data-locale="ar"] .mobile-nav__inner .button {
  text-align: right;
}

body[data-locale="ar"] .two-column > *:not(figure),
body[data-locale="ar"] .process-grid > *:not(figure),
body[data-locale="ar"] .contact-grid > *:not(figure),
body[data-locale="ar"] .footer__grid > * {
  text-align: right;
}

body[data-locale="ar"] .hero__actions,
body[data-locale="ar"] .chip-row,
body[data-locale="ar"] .icon-list {
  justify-content: flex-end;
}

body [data-locale] {
  display: none !important;
}

body[data-locale="en"] [data-locale="en"],
body[data-locale="ar"] [data-locale="ar"] {
  display: revert !important;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.skip-link {
  position: absolute;
  top: -200px;
  left: 1rem;
  padding: 0.75rem 1.3rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  z-index: 250;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container-max);
  margin-inline: auto;
}

.section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent-strong);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.6rem;
  border-radius: 18px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.button--solid {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-strong) 100%);
  color: #fff;
  box-shadow: var(--shadow-lift);
}

.button--solid:hover {
  transform: translateY(-2px);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(213, 106, 0, 0.18);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.95);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-accent-strong);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(213, 106, 0, 0.2);
  box-shadow: 0 10px 24px rgb(213 106 0 / 16%);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 240;
  background: rgba(253, 247, 239, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(213, 106, 0, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-text);
  text-transform: uppercase;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  padding: 0.55rem 0.9rem;
  border-radius: 18px;
  color: var(--color-muted);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
}

.nav-locale {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-locale__divider {
  color: var(--color-muted);
}

.locale-toggle {
  border: none;
  background: none;
  padding: 0.2rem 0.4rem;
  cursor: pointer;
  font: inherit;
  color: var(--color-muted);
}

.locale-toggle[aria-current="true"] {
  color: var(--color-accent-strong);
}

.nav-spacer {
  flex: 1;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(213, 106, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  inset-block-start: 0;
  background: rgba(249, 247, 242, 0.9);
  backdrop-filter: blur(18px);
  padding: calc(1.6rem + env(safe-area-inset-top)) 0 calc(3rem + env(safe-area-inset-bottom));
  display: none;
  overflow-y: auto;
  z-index: 190;
  pointer-events: none;
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.9rem;
  width: min(520px, 92vw);
  margin-inline: auto;
  padding: 0 clamp(1.2rem, 5vw, 1.8rem);
  margin-top: clamp(1.2rem, 5vw, 2rem);
}

.mobile-nav__inner a {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  font-weight: 600;
  font-size: clamp(1rem, 4vw, 1.2rem);
  box-shadow: 0 20px 40px rgb(213 106 0 / 16%);
  border: 1px solid rgba(213, 106, 0, 0.12);
}

.mobile-nav__inner .button {
  width: 100%;
  margin-top: 0.75rem;
  justify-content: center;
}

.nav-locale--mobile {
  display: inline-flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem auto 0;
  font-size: 1.05rem;
}

.site-header.open .mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
}

.hero {
  position: relative;
  min-height: clamp(320px, 45vh, 460px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 14, 22, 0.82), rgba(12, 14, 22, 0.72));
  pointer-events: none;
}
.hero__overlay {
  position: relative;
  display: grid;
  gap: 1.4rem;
  padding-block: clamp(48px, 6.5vw, 84px);
  color: #fff;
}

.hero__overlay h1,
.hero__overlay p,
.hero__overlay a {
  color: #fff;
}

.hero__brand-intro {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
}

.hero__brand-logo {
  width: clamp(320px, 48vw, 520px);
  height: auto;
  filter: drop-shadow(0 35px 60px rgb(0 0 0 / 35%));
  animation: hero-logo-sway 18s ease-in-out infinite;
  transform-origin: center;
}

@keyframes hero-logo-sway {
  0% { transform: rotateY(-18deg); }
  50% { transform: rotateY(18deg); }
  100% { transform: rotateY(-18deg); }
}

.hero__brand-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.8vw, 2.2rem);
}

.hero__lede {
  max-width: 620px;
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  font-weight: 500;
  color: #fff;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.two-column {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel {
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.panel img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  object-position: center 55%;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.icon-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--color_muted);
  color: var(--color-muted);
}

.icon-list span {
  font-size: 1.6rem;
  color: var(--color-accent-strong);
}

.material-list {
  display: grid;
  gap: 1.4rem;
}

.material-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.75rem;
}

.material-card header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.material-card header span {
  font-size: 1.4rem;
  color: var(--color-accent-strong);
}

.process-grid {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.2rem;
}

.process-steps li {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.process-media {
  display: grid;
  gap: 1.2rem;
}

.process-media figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  background: var(--color-surface);
  max-height: 280px;
}

.process-media figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 65%;
}

.process-timeline {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.process-timeline h4 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.process-timeline ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.process-timeline li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--color-muted);
}

.feature-list {
  display: grid;
  gap: 1.3rem;
}

.feature-list article {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.feature-media {
  display: grid;
  gap: 1.2rem;
}

     .feature-media img {
  width: 100%;
  height: auto;
  max-height: 300px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center 60%;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  background: var(--color-surface);
}

.quality-steps {
  display: grid;
  gap: 1.1rem;
}

.quality-steps article {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.customization-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.contact-section {
  background: linear-gradient(135deg, #f28c1a 0%, #d56a00 100%);
  color: #fff;
}

.contact-section h2,
.contact-section p,
.contact-section a {
  color: #fff;
}

.contact-grid {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 1.2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}

.contact-list span {
  font-size: 1.2rem;
}

.social-row {
  display: flex;
  gap: 0.6rem;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 48px);
}

.footer__nav {
  display: grid;
  gap: 0.4rem;
  color: var(--color-muted);
}

.footer__meta {
  margin-top: 2rem;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.muted {
  color: var(--color-muted);
}

.contact-card .chip-row {
  gap: 0.5rem;
}

.hero__brand-intro[data-reveal],
.hero__actions[data-reveal],
.hero__lede[data-reveal],
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .nav-locale {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .two-column,
  .two-column.reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 520px;
  }

  .hero__overlay {
    gap: 1.2rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .process-media {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .chip-row {
    gap: 0.45rem;
  }

  .chip {
    width: 100%;
    justify-content: center;
  }

  .contact-grid,
  .two-column,
  .two-column.reverse {
    gap: 1.8rem;
  }
}

.brand span:last-child {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  height: 44px;
}

.brand__word {
  display: inline-flex;
  align-items: center;
  height: 44px;
}

.brand__word span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand--footer .brand__mark,
.brand--footer .brand__word {
  height: 56px;
}

.brand--footer .brand__mark {
  width: 56px;
}

.brand--footer .brand__word {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  align-items: center;
}






.site-footer .footer__grid {
  padding-top: 40px;
}
