:root {
  --teal: #009998;
  --teal-dark: #006f72;
  --teal-soft: #dff6f7;
  --teal-card: #d6f1f2;
  --bg: #effcfc;
  --dark: #263f42;
  --text: #061719;
  --muted: #5f7679;
  --red: #ef1747;
  --white: #ffffff;
  --border: rgba(0, 111, 114, 0.14);
  --shadow: 0 24px 70px rgba(0, 128, 128, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 25% 62%, rgba(0, 153, 152, 0.14), transparent 34%),
    radial-gradient(circle at 85% 22%, rgba(0, 153, 152, 0.08), transparent 25%),
    linear-gradient(180deg, #f8ffff 0%, var(--bg) 100%);
  overflow-x: hidden;
}

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

button,
input {
  font-family: inherit;
}

#pageSections,
.pageSections {
  background: #ffffff;
}

.site-header {
  width: 100%;
  padding: 18px 24px 0;
}

.top-header {
  position: relative;
  display: grid;
  grid-template-columns: 320px 310px 260px 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
}

.brand img {
  width: 285px;
  max-width: 100%;
  display: block;
}

.brand span {
  margin-top: 3px;
  color: var(--dark);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
}

.mobile-menu-btn {
  display: none;
}

.header-phones {
  display: grid;
  gap: 6px;
}

.phone-link {
  position: relative;
  display: block;
  padding-left: 28px;
  text-align: left;
  direction: ltr;
}

.phone-link::before {
  content: "☎";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--teal);
  font-size: 20px;
  font-weight: 900;
}

.phone-link strong {
  display: block;
  color: var(--dark);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 1.8px;
  font-weight: 900;
}

.phone-link small {
  display: block;
  margin-top: 1px;
  color: var(--dark);
  font-size: 9px;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
  direction: rtl;
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-links a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-size: 13px;
  font-weight: 900;
  transition: 0.25s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--teal-dark);
}

.email-link {
  position: relative;
  color: var(--dark);
  font-size: 21px;
  font-weight: 900;
  direction: ltr;
}

.email-link::before {
  content: "✉";
  margin-right: 8px;
  color: var(--teal-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  flex-wrap: wrap;
}

.main-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 5px;
  color: #102c30;
  background: var(--teal-soft);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: 0.22s ease;
}

.main-nav a:hover {
  background: #cceff0;
  transform: translateY(-1px);
}

.main-nav .nav-cta {
  min-height: 44px;
  padding: 11px 19px;
  color: var(--white);
  background: var(--red);
  border-radius: 2px;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.main-nav .nav-cta:hover {
  background: #d8103b;
}

.category-nav {
  width: 100%;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
}

.category-item {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 14px 24px;
  background: var(--teal-card);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.category-item:hover,
.category-item:focus-visible {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  outline: none;
}

.category-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  opacity: 0.92;
  transition: filter 0.22s ease, opacity 0.22s ease;
}

.category-item:hover img,
.category-item:focus-visible img {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.category-item span {
  color: #09272b;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 900;
  transition: color 0.22s ease;
}

.category-item:hover span,
.category-item:focus-visible span {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 205px);
  background:
    radial-gradient(circle at 22% 58%, rgba(0, 153, 152, 0.16), transparent 36%),
    linear-gradient(120deg, rgba(223, 246, 247, 0.96) 0%, rgba(248, 255, 255, 0.92) 48%, rgba(232, 249, 249, 0.96) 100%);
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(440px, 42%) minmax(0, 58%);
  grid-template-areas:
    "slider content"
    "slider lead";
  align-items: center;
  gap: 24px 38px;
  padding: 56px 24px 48px;
  direction: ltr;
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-layer img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 118%;
  height: 118%;
  max-width: none;
  opacity: 0.3;
  object-fit: cover;
  object-position: center;
  filter: blur(0.2px) saturate(0.95);
  transform-origin: center;
  animation: coverBackgroundMove 16s ease-in-out infinite alternate;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-bg-layer img.is-changing {
  opacity: 0;
}

@keyframes coverBackgroundMove {
  0% {
    transform: translate3d(-50%, -50%, 0) scale(1.04) rotate(-1deg);
  }

  50% {
    transform: translate3d(-48%, -52%, 0) scale(1.12) rotate(0.8deg);
  }

  100% {
    transform: translate3d(-52%, -48%, 0) scale(1.07) rotate(-0.6deg);
  }
}

.hero-content,
.lead-section,
.hero-slider {
  position: relative;
  z-index: 1;
}

.hero-content,
.lead-section {
  direction: rtl;
  justify-self: end;
  width: 100%;
  max-width: 930px;
  padding-inline-end: 64px;
}

.hero-content {
  grid-area: content;
  align-self: end;
}

.lead-section {
  grid-area: lead;
  align-self: start;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 15px;
  padding: 5px 14px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(0, 153, 152, 0.1);
  font-size: 14px;
  font-weight: 900;
}

.hero-content h1 {
  color: var(--dark);
  font-size: clamp(42px, 4.15vw, 76px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}

.hero-content p {
  max-width: 870px;
  color: #061719;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 500;
}

.lead-box {
  color: var(--dark);
}

.lead-box strong,
.lead-box span {
  display: block;
  font-size: 19px;
  line-height: 1.55;
}

.lead-box strong {
  font-weight: 900;
}

.lead-box span {
  font-weight: 800;
}

.request-area {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.manager-img {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.request-form {
  width: 100%;
  max-width: 720px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 10px;
}

.form-grid input {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border: 1.5px solid rgba(38, 63, 66, 0.72);
  outline: none;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  transition: 0.2s ease;
}

.form-grid input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 153, 152, 0.13);
}

.policy {
  max-width: 650px;
  margin: 9px 0 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #243c40;
  cursor: pointer;
}

.policy input {
  appearance: none;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  border-radius: 2px;
  background: var(--teal);
  position: relative;
}

.policy input:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.policy span {
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
}

.policy a {
  color: var(--teal-dark);
}

.request-form button {
  width: 138px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.request-form button:hover {
  color: var(--white);
  background: var(--red);
}

.hero-slider {
  grid-area: slider;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  direction: rtl;
}

.slide-image-wrap {
  width: 100%;
  max-width: 760px;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-image-wrap img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: drop-shadow(0 28px 42px rgba(0, 118, 118, 0.12));
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.slide-image-wrap img.is-changing {
  opacity: 0;
  transform: translateX(-18px) scale(0.98);
}

.slide-copy {
  position: absolute;
  left: clamp(14px, 4vw, 48px);
  bottom: clamp(52px, 8vw, 92px);
  z-index: 3;
  width: min(390px, 70%);
  text-align: right;
  pointer-events: none;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.slide-copy.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.slide-copy strong {
  display: block;
  color: var(--teal);
  font-size: clamp(28px, 3.15vw, 48px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  text-shadow:
    3px 0 0 var(--white),
    -3px 0 0 var(--white),
    0 3px 0 var(--white),
    0 -3px 0 var(--white),
    2px 2px 0 var(--white),
    -2px 2px 0 var(--white),
    2px -2px 0 var(--white),
    -2px -2px 0 var(--white),
    0 12px 18px rgba(0, 0, 0, 0.12);
}

.slide-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 7px;
  padding: 2px 10px 4px;
  color: #30363a;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.08);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.1;
  font-weight: 900;
}

.slider-btn {
  position: absolute;
  top: 52%;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 26px rgba(0, 128, 128, 0.12);
  font-size: 45px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.slider-btn:hover {
  color: var(--white);
  background: var(--teal);
}

.slider-prev {
  right: 12px;
}

.slider-next {
  left: 12px;
}

.slider-dots {
  position: absolute;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.slider-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: #e0f5f6;
  cursor: pointer;
  transition: 0.25s ease;
}

.slider-dots button.active {
  width: 42px;
  background: var(--teal);
}


.benefits-video-section {
  padding: 28px 24px 20px;
  background: transparent;
  border-top: 0;
}

.benefits-video-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.95fr);
  gap: 22px;
  align-items: stretch;
  direction: ltr;
}

.benefits-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  direction: rtl;
}

.benefit-card {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 34px;
  border-radius: 5px;
  background: var(--teal-card);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  background: #cdeff0;
  box-shadow: 0 16px 34px rgba(0, 128, 128, 0.1);
}

.benefit-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 58px;
}

.benefit-card h3 {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
}

.video-card {
  min-height: 244px;
  overflow: hidden;
  border-radius: 5px;
  background: #000;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.video-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


.stats-section {
  padding: 42px 24px 44px;
  background: transparent;
}

.stats-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 76px);
  align-items: center;
  direction: rtl;
}

.stat-card {
  position: relative;
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: visible;
}

.stat-bg-img {
  width: 100%;
  max-width: 245px;
  height: 118px;
  object-fit: contain;
  display: block;
  opacity: 1;
  pointer-events: none;
  user-select: none;
}

.stat-card h3 {
  position: absolute;
  z-index: 2;
  inset-inline: 12%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark);
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: 1.32;
  font-weight: 900;
  text-align: start;
  text-transform: uppercase;
  max-width: 220px;
}

.stat-card:nth-child(1) h3,
.stat-card:nth-child(2) h3 {
  inset-inline-start: 43%;
  inset-inline-end: 4%;
}

.stat-card:nth-child(3) h3 {
  inset-inline-start: 34%;
  inset-inline-end: 2%;
}

.stat-card:nth-child(4) h3 {
  inset-inline-start: 34%;
  inset-inline-end: 2%;
}


.products-showcase-section {
  padding: 28px 24px 56px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(241, 252, 252, 0.98));
}

.products-showcase-inner {
  width: 100%;
  max-width: 1880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(620px, 1.5fr) minmax(440px, 1fr);
  gap: 20px;
  direction: ltr;
}

.product-category-panel {
  position: relative;
  overflow: hidden;
  min-height: 592px;
  padding: 34px 28px 34px;
  border-radius: 10px;
  background: #e7f7f8;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(0, 128, 128, 0.08);
  direction: rtl;
}

.product-category-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--panel-bg);
  background-repeat: no-repeat;
  background-size: 72% auto;
  background-position: left bottom;
  opacity: 0.3;
  filter: saturate(0.9);
  pointer-events: none;
}

.product-category-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(231, 247, 248, 0.16), rgba(231, 247, 248, 0.86) 58%);
  pointer-events: none;
}

.asphalt-products {
  background: #eef5ff;
}

.asphalt-products::after {
  background: linear-gradient(90deg, rgba(238, 245, 255, 0.1), rgba(238, 245, 255, 0.9) 56%);
}

.product-category-panel h2 {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-bottom: 48px;
  color: #303943;
  font-size: clamp(34px, 2.8vw, 56px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1px;
}

.product-category-panel h2::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -6px;
  height: 5px;
  background: rgba(0, 153, 152, 0.75);
  border-radius: 999px;
}

.product-cards-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.concrete-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
}

.asphalt-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
}

.product-mini-card {
  min-height: 96px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  grid-template-areas:
    "image type"
    "image title"
    "image meta";
  align-items: center;
  gap: 0 12px;
  padding: 12px 16px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(4px);
  transition: 0.24s ease;
}

.product-mini-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 32px rgba(0, 128, 128, 0.12);
}

.product-mini-card img {
  grid-area: image;
  width: 96px;
  height: 68px;
  object-fit: contain;
  object-position: center;
  justify-self: center;
}

.product-mini-card span {
  grid-area: type;
  color: var(--teal-dark);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
}

.product-mini-card strong {
  grid-area: title;
  color: var(--teal-dark);
  font-size: 18px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.product-mini-card small {
  grid-area: meta;
  color: #313941;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
}

.product-custom-card {
  min-height: 96px;
  grid-template-columns: 1fr;
  grid-template-areas:
    "type"
    "title"
    "meta";
  align-content: center;
  max-width: 320px;
}

.product-custom-card strong {
  font-size: 22px;
}

.asphalt-custom-card {
  grid-column: 1 / -1;
  max-width: 360px;
}


/* ===========================================================
   Crushing & Screening Showcase
   =========================================================== */
.crushing-showcase-section {
  padding: 0 24px 58px;
  background: linear-gradient(180deg, rgba(241, 252, 252, 0.98), rgba(255, 255, 255, 0.88));
}

.crushing-showcase-inner {
  width: 100%;
  max-width: 1880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 470px) minmax(0, 1fr);
  gap: 20px;
  direction: ltr;
  align-items: stretch;
}

.crushing-side-image {
  min-height: 700px;
  overflow: hidden;
  border-radius: 10px;
  background: #f6fafa;
  box-shadow: 0 24px 70px rgba(0, 128, 128, 0.08);
}

.crushing-side-image img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.crushing-products {
  min-height: 700px;
  background: #edf8f9;
}

.crushing-products::before {
  background-size: 76% auto;
  background-position: right top;
  opacity: 0.3;
}

.crushing-products::after {
  background: linear-gradient(90deg, rgba(237, 248, 249, 0.12), rgba(237, 248, 249, 0.88) 64%);
}

.crushing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1160px;
  gap: 9px;
}

.crushing-grid .product-mini-card {
  min-height: 88px;
  grid-template-columns: 92px minmax(0, 1fr);
  padding: 10px 14px;
}

.crushing-grid .product-mini-card img {
  width: 92px;
  height: 62px;
}

.crushing-grid .product-mini-card strong {
  font-size: 17px;
}

.crushing-grid .product-mini-card small {
  font-size: 13px;
}

.crushing-custom-card {
  max-width: 310px;
}

@media (max-width: 1200px) {
  .crushing-showcase-inner {
    grid-template-columns: 1fr;
  }

  .crushing-side-image,
  .crushing-side-image img {
    min-height: 420px;
  }

  .crushing-products {
    min-height: auto;
  }

  .crushing-grid {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .crushing-showcase-section {
    padding: 0 14px 38px;
  }

  .crushing-side-image,
  .crushing-side-image img {
    min-height: 310px;
  }

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

  .crushing-grid .product-mini-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .crushing-grid .product-mini-card img {
    width: 84px;
    height: 58px;
  }

  .crushing-products::before {
    background-size: 115% auto;
    background-position: center top;
  }
}



.consultation-section {
  position: relative;
  overflow: visible;
  min-height: 355px;
  margin-top: 92px;
  padding: 0 24px;
  color: var(--white);
  background:
    linear-gradient(rgba(0, 73, 75, 0.92), rgba(0, 73, 75, 0.92)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 260px),
    radial-gradient(circle at 78% 18%, rgba(0, 153, 152, 0.35), transparent 28%),
    #004f51;
}

.consultation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("../img/home/1.png") 0 20% / 360px auto repeat-x,
    url("../img/home/3.png") 0 105% / 360px auto repeat-x;
  opacity: 0.08;
  pointer-events: none;
}

.consultation-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  min-height: 355px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 44px;
  direction: ltr;
}

.consultation-visual {
  position: relative;
  align-self: stretch;
  min-height: clamp(300px, 28vw, 430px);
  margin-top: -92px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

.consultation-visual img {
  width: min(560px, 100%);
  max-height: 485px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.24));
}

.consultation-content {
  direction: rtl;
  max-width: 720px;
}

.consultation-content h2 {
  color: var(--white);
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1.18;
  font-weight: 900;
  margin-bottom: 12px;
}

.consultation-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
  margin-bottom: 18px;
}

.consultation-form {
  max-width: 720px;
}

.consultation-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 10px;
}

.consultation-inputs input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.78);
  outline: none;
  color: var(--white);
  background: rgba(0, 73, 75, 0.42);
  font-size: 16px;
  font-weight: 800;
  text-align: right;
}

.consultation-inputs input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.consultation-inputs input:focus {
  border-color: #27c8c8;
  box-shadow: 0 0 0 3px rgba(39, 200, 200, 0.16);
}

.consultation-policy {
  margin: 11px 0 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.consultation-policy input {
  appearance: none;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 3px;
  background: #11a9ad;
  position: relative;
}

.consultation-policy input:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.consultation-policy span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 800;
}

.consultation-policy a {
  color: #61eff0;
}

.consultation-form button {
  min-width: 150px;
  height: 47px;
  border: 0;
  border-radius: 4px;
  color: var(--white);
  background: #0ca0a6;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.consultation-form button:hover {
  background: #12b4ba;
  transform: translateY(-1px);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 78px 24px 24px;
  color: #e7f0f1;
  background: linear-gradient(180deg, #202a36 0%, #121b28 100%);
}

.footer-watermark {
  position: absolute;
  inset-inline: 0;
  top: 58%;
  transform: translateY(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(120px, 18vw, 300px);
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: -12px;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1fr 1.35fr;
  gap: 70px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column h3 {
  color: #8dd0d2;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-column a,
.footer-column p {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 27px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.footer-column a {
  padding: 2px 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.035);
  transition: 0.2s ease;
}

.footer-column a:hover {
  color: #ffffff;
  background: rgba(141, 208, 210, 0.16);
  transform: translateX(-2px);
}

.footer-contact-column p,
.footer-contact-column a {
  background: transparent;
  padding: 0;
}

.footer-contact-column a:hover {
  background: transparent;
  transform: none;
  color: #8dd0d2;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 66px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1440px) {
  .top-header {
    grid-template-columns: 280px 280px 230px 1fr;
    gap: 18px;
  }

  .brand img {
    width: 260px;
  }

  .phone-link strong {
    font-size: 21px;
  }

  .email-link {
    font-size: 19px;
  }

  .hero-content,
  .lead-section {
    padding-inline-end: 32px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 4vw, 62px);
  }

  .slide-image-wrap {
    max-width: 680px;
  }
}

@media (max-width: 1200px) {
  .top-header {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .header-contact {
    align-items: flex-start;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .category-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  .category-item {
    min-width: 245px;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "slider"
      "lead";
    gap: 20px;
    padding-top: 38px;
    direction: rtl;
  }

  .hero-bg-layer img {
    left: 50%;
    top: 50%;
    width: 130%;
    height: 130%;
  }

  .hero-content,
  .lead-section {
    max-width: 100%;
    padding-inline-end: 0;
  }

  .hero-slider {
    min-height: auto;
  }

  .slide-image-wrap {
    min-height: 360px;
    max-width: 760px;
  }

  .benefits-video-inner {
    grid-template-columns: 1fr;
  }

  .video-card {
    min-height: 320px;
  }

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


  .products-showcase-inner {
    grid-template-columns: 1fr;
  }

  .product-category-panel {
    min-height: 520px;
  }

  .concrete-grid,
  .asphalt-grid {
    max-width: 100%;
  }

}

@media (max-width: 768px) {
  body {
    background:
      radial-gradient(circle at 50% 53%, rgba(0, 153, 152, 0.13), transparent 38%),
      linear-gradient(180deg, #f8ffff 0%, #eaf9f9 100%);
  }

  .site-header {
    padding: 10px 12px 0;
  }

  .top-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand {
    align-items: flex-start;
    justify-self: start;
  }

  .brand img {
    width: 158px;
  }

  .brand span {
    font-size: 6px;
    max-width: 160px;
  }

  .mobile-menu-btn {
    position: absolute;
    top: 6px;
    right: auto;
    left: 0;
    width: 44px;
    height: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-btn span {
    width: 33px;
    height: 3px;
    border-radius: 99px;
    background: var(--teal);
  }

  .header-phones,
  .header-contact {
    display: none;
  }

  .main-nav {
    width: 100%;
    display: none;
    grid-template-columns: 1.55fr 0.85fr 1.1fr 0.9fr;
    gap: 7px;
    margin-top: 3px;
  }

  body.menu-open .main-nav {
    display: grid;
  }

  .main-nav a {
    min-height: 34px;
    padding: 8px 7px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
  }

  .main-nav .contact-link {
    grid-column: 1 / -1;
  }

  .main-nav .nav-cta {
    grid-column: 1 / -1;
    min-height: 45px;
    margin-top: 3px;
    font-size: 16px;
  }


  .category-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 40px 64px 42px;
    gap: 16px;
  }

  .hero-bg-layer img {
    left: 50%;
    top: 50%;
    width: 145%;
    height: 145%;
    opacity: 0.3;
  }

  .hero-label {
    display: none;
  }

  .hero-content h1 {
    margin-bottom: 14px;
    color: #17383c;
    font-size: 23px;
    line-height: 1.48;
    font-weight: 900;
    letter-spacing: 0;
  }

  .hero-content p {
    max-width: 390px;
    font-size: 15px;
    line-height: 1.14;
    font-weight: 500;
  }

  .hero-slider {
    min-height: 330px;
    margin-top: -4px;
  }

  .slide-image-wrap {
    min-height: 300px;
    max-width: 390px;
  }

  .slide-image-wrap img {
    max-height: 310px;
  }

  .slider-btn {
    display: none;
  }

  .slide-copy {
    left: 8px;
    bottom: 42px;
    width: min(260px, 74%);
  }

  .slide-copy strong {
    font-size: 25px;
    line-height: 1.08;
    text-shadow:
      2px 0 0 var(--white),
      -2px 0 0 var(--white),
      0 2px 0 var(--white),
      0 -2px 0 var(--white),
      1px 1px 0 var(--white),
      -1px 1px 0 var(--white),
      1px -1px 0 var(--white),
      -1px -1px 0 var(--white),
      0 8px 14px rgba(0, 0, 0, 0.12);
  }

  .slide-copy span {
    min-height: 28px;
    font-size: 16px;
    padding-inline: 8px;
  }

  .slider-dots {
    bottom: 5px;
    gap: 12px;
  }

  .slider-dots button {
    width: 34px;
    height: 4px;
  }

  .slider-dots button.active {
    width: 36px;
  }

  .lead-section {
    margin-top: 24px;
  }

  .lead-box strong,
  .lead-box span {
    font-size: 15px;
    line-height: 1.45;
  }

  .request-area {
    grid-template-columns: 78px 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  .manager-img {
    width: 78px;
    height: 78px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-grid input {
    height: 43px;
    font-size: 14px;
  }

  .policy {
    align-items: flex-start;
  }

  .policy span {
    font-size: 10px;
  }

  .request-form button {
    width: 100%;
    height: 43px;
  }

  .benefits-video-section {
    padding: 22px 14px 12px;
  }

  .benefits-cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .benefit-card {
    min-height: 86px;
    padding: 18px 20px;
    gap: 14px;
  }

  .benefit-card img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .benefit-card h3 {
    font-size: 15px;
    line-height: 1.45;
  }

  .video-card {
    min-height: 230px;
  }

  .stats-section {
    padding: 28px 14px;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card {
    min-height: 92px;
    border-bottom: 1px solid rgba(0, 153, 152, 0.09);
  }

  .stat-card h3 {
    font-size: 16px;
  }

  .stat-number {
    font-size: 78px;
  }

  .stat-icon-card img {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }


  .products-showcase-section {
    padding: 22px 14px 38px;
  }

  .products-showcase-inner {
    gap: 14px;
  }

  .product-category-panel {
    min-height: auto;
    padding: 24px 18px 26px;
    border-radius: 8px;
  }

  .product-category-panel::before {
    background-size: 115% auto;
    background-position: left bottom;
    opacity: 0.3;
  }

  .product-category-panel h2 {
    margin-bottom: 28px;
    font-size: 30px;
  }

  .concrete-grid,
  .asphalt-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-mini-card {
    min-height: 90px;
    grid-template-columns: 82px minmax(0, 1fr);
    padding: 10px 12px;
  }

  .product-mini-card img {
    width: 82px;
    height: 62px;
  }

  .product-mini-card strong {
    font-size: 17px;
  }

  .product-mini-card small {
    font-size: 12px;
  }

  .product-custom-card,
  .asphalt-custom-card {
    max-width: 100%;
  }

}

@media (max-width: 560px) {
  .hero {
    padding-inline: 64px 14px;
  }

  .hero-content p {
    max-width: 385px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 36px 22px 40px;
  }

  .hero-bg-layer img {
    left: 50%;
    top: 50%;
    width: 160%;
    height: 160%;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.28;
  }

  .slide-image-wrap {
    min-height: 260px;
  }

  .slide-image-wrap img {
    max-height: 270px;
  }

  .slide-copy {
    left: 0;
    bottom: 36px;
    width: min(235px, 76%);
  }

  .slide-copy strong {
    font-size: 22px;
  }

  .slide-copy span {
    font-size: 14px;
  }

  .hero-slider {
    min-height: 285px;
  }

  .request-area {
    grid-template-columns: 1fr;
  }

  .manager-img {
    width: 90px;
    height: 90px;
  }

  .video-card {
    min-height: 190px;
  }

  .stat-number {
    font-size: 66px;
  }


  .product-category-panel h2 {
    font-size: 26px;
  }

  .product-mini-card {
    min-height: 86px;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 0 10px;
  }

  .product-mini-card img {
    width: 74px;
    height: 56px;
  }

  .product-mini-card strong {
    font-size: 15px;
  }

  .product-custom-card strong {
    font-size: 19px;
  }

}


@media (max-width: 1200px) {
  .consultation-inner {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 28px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
  }
}

@media (max-width: 768px) {
  .consultation-section {
    margin-top: 28px;
    padding: 34px 14px 30px;
  }

  .consultation-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    direction: rtl;
  }

  .consultation-visual {
    display: none;
  }

  .consultation-visual img {
    display: none;
  }

  .consultation-content {
    order: 2;
    max-width: 100%;
    padding-top: 8px;
  }

  .consultation-content h2 {
    font-size: 30px;
  }

  .consultation-content p {
    font-size: 15px;
    line-height: 1.65;
  }

  .consultation-inputs {
    grid-template-columns: 1fr;
  }

  .consultation-form button {
    width: 100%;
  }

  .site-footer {
    padding: 48px 18px 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-column h3 {
    font-size: 20px;
  }

  .footer-watermark {
    font-size: 112px;
    letter-spacing: -6px;
    top: 50%;
  }

  .footer-bottom {
    margin-top: 38px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .consultation-visual {
    display: none;
  }

  .consultation-visual img {
    display: none;
  }

  .consultation-content h2 {
    font-size: 26px;
  }
}

.product-mini-card {
  direction: ltr;
}

.product-mini-card span,
.product-mini-card strong,
.product-mini-card small {
  direction: rtl;
  text-align: right;
}

.product-custom-card {
  direction: rtl;
  text-align: right;
}

/* Stats SVG overlay update */
@media (max-width: 1200px) {
  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 48px;
  }

  .stat-bg-img {
    max-width: 285px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 28px 14px;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card {
    min-height: 108px;
    border-bottom: 1px solid rgba(0, 153, 152, 0.09);
  }

  .stat-bg-img {
    max-width: 260px;
    height: 102px;
  }

  .stat-card h3 {
    font-size: 15px;
    line-height: 1.32;
  }

  .stat-card:nth-child(1) h3,
  .stat-card:nth-child(2) h3,
  .stat-card:nth-child(3) h3,
  .stat-card:nth-child(4) h3 {
    inset-inline-start: 44%;
    inset-inline-end: 6%;
  }
}

@media (max-width: 480px) {
  .stat-card {
    min-height: 96px;
  }

  .stat-bg-img {
    max-width: 232px;
    height: 92px;
  }

  .stat-card h3 {
    font-size: 13px;
  }
}


/* ===========================================================
   Additional Equipment & Components Showcase
   =========================================================== */
.additional-equipment-section {
  position: relative;
  overflow: hidden;
  padding: 0 24px 58px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 252, 0.95));
}

.additional-equipment-inner {
  width: 100%;
  max-width: 1880px;
  margin: 0 auto;
}

.equipment-list-panel {
  position: relative;
  overflow: hidden;
  min-height: 710px;
  padding: 34px 30px 52px;
  border-radius: 10px;
  background: #eef4fb;
  box-shadow: 0 24px 70px rgba(0, 70, 90, 0.08);
  direction: ltr;
}

.equipment-list-panel::before {
  content: "";
  position: absolute;
  inset: -14% -6% -12% auto;
  width: 62%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 20%, rgba(20, 50, 70, 0.08) 20% 34%, transparent 34% 45%, rgba(20, 50, 70, 0.08) 45% 63%, transparent 63%),
    conic-gradient(from 15deg, rgba(20, 50, 70, 0.08) 0deg 22deg, transparent 22deg 45deg, rgba(20, 50, 70, 0.08) 45deg 70deg, transparent 70deg 90deg, rgba(20, 50, 70, 0.08) 90deg 114deg, transparent 114deg 140deg, rgba(20, 50, 70, 0.08) 140deg 166deg, transparent 166deg 190deg, rgba(20, 50, 70, 0.08) 190deg 214deg, transparent 214deg 238deg, rgba(20, 50, 70, 0.08) 238deg 266deg, transparent 266deg 292deg, rgba(20, 50, 70, 0.08) 292deg 318deg, transparent 318deg 360deg);
  opacity: 0.55;
  transform: rotate(-9deg);
  pointer-events: none;
}

.equipment-list-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(238, 244, 251, 0.24), rgba(238, 244, 251, 0.86) 68%),
    radial-gradient(circle at 76% 48%, rgba(255,255,255,0.65), transparent 34%);
  pointer-events: none;
}

.equipment-list-panel h2 {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 0 56px;
  color: #333b47;
  font-size: clamp(34px, 3vw, 55px);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.equipment-list-panel h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 5px;
  background: #86d9dc;
  border-radius: 999px;
}

.components-title {
  margin-top: 58px !important;
}

.equipment-items-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 7px;
  align-items: stretch;
}

.equipment-item-card {
  min-height: 72px;
  grid-column: span 2;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(0, 80, 100, 0.035);
  backdrop-filter: blur(8px);
  color: #006e73;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.equipment-item-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(0, 120, 130, 0.1);
}

.equipment-item-card.wide-card {
  grid-column: span 3;
}

.equipment-item-card img {
  width: 56px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}

.equipment-item-card strong {
  display: block;
  color: #006f73;
  font-size: 18px;
  line-height: 1.16;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1px;
}

.additional-items-grid .equipment-item-card:nth-child(6),
.additional-items-grid .equipment-item-card:nth-child(11),
.additional-items-grid .equipment-item-card:nth-child(12),
.components-items-grid .equipment-item-card:nth-child(1),
.components-items-grid .equipment-item-card:nth-child(5),
.components-items-grid .equipment-item-card:nth-child(9),
.components-items-grid .equipment-item-card:nth-child(10) {
  grid-column: span 3;
}

@media (max-width: 1400px) {
  .equipment-item-card,
  .equipment-item-card.wide-card,
  .additional-items-grid .equipment-item-card:nth-child(6),
  .additional-items-grid .equipment-item-card:nth-child(11),
  .additional-items-grid .equipment-item-card:nth-child(12),
  .components-items-grid .equipment-item-card:nth-child(1),
  .components-items-grid .equipment-item-card:nth-child(5),
  .components-items-grid .equipment-item-card:nth-child(9),
  .components-items-grid .equipment-item-card:nth-child(10) {
    grid-column: span 4;
  }
}

@media (max-width: 992px) {
  .additional-equipment-section {
    padding: 0 16px 42px;
  }

  .equipment-list-panel {
    min-height: auto;
    padding: 28px 20px 34px;
  }

  .equipment-list-panel::before {
    width: 95%;
    inset: 10% -28% auto auto;
    height: 80%;
  }

  .equipment-list-panel h2 {
    margin-bottom: 34px;
    font-size: 34px;
  }

  .components-title {
    margin-top: 42px !important;
  }

  .equipment-item-card,
  .equipment-item-card.wide-card,
  .additional-items-grid .equipment-item-card:nth-child(6),
  .additional-items-grid .equipment-item-card:nth-child(11),
  .additional-items-grid .equipment-item-card:nth-child(12),
  .components-items-grid .equipment-item-card:nth-child(1),
  .components-items-grid .equipment-item-card:nth-child(5),
  .components-items-grid .equipment-item-card:nth-child(9),
  .components-items-grid .equipment-item-card:nth-child(10) {
    grid-column: span 6;
  }
}

@media (max-width: 620px) {
  .additional-equipment-section {
    padding: 0 12px 34px;
  }

  .equipment-list-panel {
    padding: 24px 14px 28px;
    border-radius: 8px;
  }

  .equipment-list-panel h2 {
    font-size: 27px;
    line-height: 1.18;
  }

  .equipment-items-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .equipment-item-card,
  .equipment-item-card.wide-card,
  .additional-items-grid .equipment-item-card:nth-child(6),
  .additional-items-grid .equipment-item-card:nth-child(11),
  .additional-items-grid .equipment-item-card:nth-child(12),
  .components-items-grid .equipment-item-card:nth-child(1),
  .components-items-grid .equipment-item-card:nth-child(5),
  .components-items-grid .equipment-item-card:nth-child(9),
  .components-items-grid .equipment-item-card:nth-child(10) {
    grid-column: 1;
  }

  .equipment-item-card {
    min-height: 70px;
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 9px 11px;
  }

  .equipment-item-card img {
    width: 54px;
    height: 46px;
  }

  .equipment-item-card strong {
    font-size: 15px;
  }
}


/* ===========================================================
   Final Arabic RTL polish for all sections
   =========================================================== */
body,
.site-header,
.category-nav,
.hero-content,
.lead-section,
.benefits-video-section,
.stats-section,
.products-showcase-section,
.crushing-showcase-section,
.additional-equipment-section,
.consultation-section,
.site-footer {
  direction: rtl;
}

.hero-content,
.lead-section,
.benefit-card,
.stat-card h3,
.product-category-panel,
.product-mini-card,
.equipment-list-panel,
.equipment-item-card,
.consultation-content,
.footer-column {
  text-align: right;
}

.product-mini-card {
  direction: rtl;
  grid-template-columns: minmax(0, 1fr) 96px;
  grid-template-areas:
    "type image"
    "title image"
    "meta image";
}

.product-mini-card img {
  justify-self: center;
}

.product-mini-card span,
.product-mini-card strong,
.product-mini-card small {
  direction: rtl;
  text-align: right;
}

.product-custom-card {
  grid-template-columns: 1fr;
  grid-template-areas:
    "type"
    "title"
    "meta";
}

.equipment-list-panel {
  direction: rtl;
}

.equipment-list-panel::before {
  inset: -14% auto -12% -6%;
}

.equipment-list-panel::after {
  background:
    linear-gradient(270deg, rgba(238, 244, 251, 0.24), rgba(238, 244, 251, 0.86) 68%),
    radial-gradient(circle at 24% 48%, rgba(255,255,255,0.65), transparent 34%);
}

.equipment-item-card {
  direction: rtl;
  grid-template-columns: minmax(0, 1fr) 56px;
}

.equipment-item-card img {
  grid-column: 2;
  grid-row: 1;
}

.equipment-item-card strong {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.consultation-content {
  direction: rtl;
}

.consultation-inputs input,
.form-grid input {
  text-align: right;
  direction: rtl;
}

.footer-contact-column a[href^="tel"],
.footer-contact-column a[href^="mailto"],
.email-link,
.phone-link {
  direction: ltr;
}

@media (max-width: 620px) {
  .product-mini-card,
  .crushing-grid .product-mini-card {
    grid-template-columns: minmax(0, 1fr) 84px;
    grid-template-areas:
      "type image"
      "title image"
      "meta image";
  }

  .equipment-item-card {
    grid-template-columns: minmax(0, 1fr) 54px;
  }
}


/* ===========================================================
   Mobile Menu Categories + 0.3 Image Backgrounds
   =========================================================== */
.main-nav .mobile-category-link {
  display: none;
}

.main-nav .mobile-category-link img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 42px;
}

.main-nav .mobile-category-link span {
  display: block;
  text-align: right;
  line-height: 1.22;
}

.hero-bg-layer img,
.product-category-panel::before,
.crushing-products::before,
.equipment-list-panel::before,
.benefits-video-section::before,
.stats-section::before,
.products-showcase-section::before,
.crushing-showcase-section::before,
.additional-equipment-section::before,
.consultation-section::before {
  opacity: 0.3;
}

.benefits-video-section,
.stats-section,
.products-showcase-section,
.crushing-showcase-section,
.additional-equipment-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.benefits-video-section::before,
.stats-section::before,
.products-showcase-section::before,
.crushing-showcase-section::before,
.additional-equipment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: min(720px, 66vw) auto;
  background-position: left center;
  pointer-events: none;
}

.benefits-video-section::before {
  background-image: url("../img/home/3.png");
  background-position: right 48%;
}

.stats-section::before {
  background-image: url("../img/home/1.png");
  background-position: left center;
}

.products-showcase-section::before {
  background-image: url("../img/home/3.png");
  background-position: right center;
}

.crushing-showcase-section::before {
  background-image: url("../img/home/2.png");
  background-position: left center;
}

.additional-equipment-section::before {
  background-image: var(--equipment-bg, url("../img/home/2.png"));
  background-position: left center;
}

.benefits-video-inner,
.stats-inner,
.products-showcase-inner,
.crushing-showcase-inner,
.additional-equipment-inner {
  position: relative;
  z-index: 1;
}

.equipment-list-panel::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    var(--equipment-bg) left center / 56% auto no-repeat,
    radial-gradient(circle at 50% 50%, transparent 0 20%, rgba(20, 50, 70, 0.08) 20% 34%, transparent 34% 45%, rgba(20, 50, 70, 0.08) 45% 63%, transparent 63%) right center / 58% auto no-repeat,
    conic-gradient(from 15deg, rgba(20, 50, 70, 0.08) 0deg 22deg, transparent 22deg 45deg, rgba(20, 50, 70, 0.08) 45deg 70deg, transparent 70deg 90deg, rgba(20, 50, 70, 0.08) 90deg 114deg, transparent 114deg 140deg, rgba(20, 50, 70, 0.08) 140deg 166deg, transparent 166deg 190deg, rgba(20, 50, 70, 0.08) 190deg 214deg, transparent 214deg 238deg, rgba(20, 50, 70, 0.08) 238deg 266deg, transparent 266deg 292deg, rgba(20, 50, 70, 0.08) 292deg 318deg, transparent 318deg 360deg) right center / 58% auto no-repeat;
  transform: none;
}

@media (max-width: 768px) {
  .main-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .main-nav .mobile-category-link {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 9px 11px;
    white-space: normal;
  }

  .main-nav .catalog-link,
  .main-nav .contact-link,
  .main-nav .nav-cta {
    grid-column: 1 / -1;
  }

  .main-nav .mobile-category-link img {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .main-nav .mobile-category-link span {
    font-size: 13px;
    font-weight: 900;
  }

  .benefits-video-section::before,
  .stats-section::before,
  .products-showcase-section::before,
  .crushing-showcase-section::before,
  .additional-equipment-section::before {
    background-size: 118% auto;
    background-position: center center;
  }

  .equipment-list-panel::before {
    background:
      var(--equipment-bg) center center / 112% auto no-repeat,
      radial-gradient(circle at 50% 50%, transparent 0 20%, rgba(20, 50, 70, 0.08) 20% 34%, transparent 34% 45%, rgba(20, 50, 70, 0.08) 45% 63%, transparent 63%) center center / 112% auto no-repeat;
  }
}

/* ===========================================================
   Language Switcher + English LTR support
   =========================================================== */
.language-switcher {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 111, 114, 0.12);
  box-shadow: 0 10px 28px rgba(0, 128, 128, 0.08);
  backdrop-filter: blur(10px);
}

.lang-btn {
  min-width: 38px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  color: var(--teal-dark);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--white);
  background: var(--teal);
}

body.site-ltr,
body.site-ltr .site-header,
body.site-ltr .category-nav,
body.site-ltr .hero-content,
body.site-ltr .lead-section,
body.site-ltr .benefits-video-section,
body.site-ltr .stats-section,
body.site-ltr .products-showcase-section,
body.site-ltr .crushing-showcase-section,
body.site-ltr .additional-equipment-section,
body.site-ltr .consultation-section,
body.site-ltr .site-footer {
  direction: ltr;
}

body.site-ltr .language-switcher {
  right: auto;
  left: 0;
}

body.site-ltr .brand,
body.site-ltr .header-contact,
body.site-ltr .main-nav,
body.site-ltr .hero-content,
body.site-ltr .lead-section,
body.site-ltr .benefit-card,
body.site-ltr .stat-card h3,
body.site-ltr .product-category-panel,
body.site-ltr .product-mini-card,
body.site-ltr .equipment-list-panel,
body.site-ltr .equipment-item-card,
body.site-ltr .consultation-content,
body.site-ltr .footer-column {
  text-align: left;
}

body.site-ltr .top-header {
  direction: ltr;
}

body.site-ltr .phone-link {
  padding-left: 28px;
  padding-right: 0;
  text-align: left;
  direction: ltr;
}

body.site-ltr .phone-link::before {
  left: 0;
  right: auto;
}

body.site-ltr .phone-link small {
  text-align: center;
  direction: ltr;
}

body.site-ltr .email-link {
  direction: ltr;
  text-align: left;
}

body.site-ltr .email-link::before {
  margin-right: 8px;
  margin-left: 0;
}

body.site-ltr .category-item {
  direction: ltr;
}

body.site-ltr .category-item span {
  text-align: left;
}

body.site-ltr .hero {
  direction: ltr;
  grid-template-areas:
    "content slider"
    "lead slider";
}

body.site-ltr .hero-content,
body.site-ltr .lead-section {
  direction: ltr;
  justify-self: start;
  padding-inline-start: 64px;
  padding-inline-end: 0;
}

body.site-ltr .form-grid input,
body.site-ltr .consultation-inputs input {
  direction: ltr;
  text-align: left;
}

body.site-ltr .policy,
body.site-ltr .consultation-policy {
  direction: ltr;
}

body.site-ltr .products-showcase-inner,
body.site-ltr .crushing-showcase-inner {
  direction: ltr;
}

body.site-ltr .product-category-panel {
  direction: ltr;
}

body.site-ltr .product-category-panel::before {
  background-position: right bottom;
}

body.site-ltr .product-category-panel::after {
  background: linear-gradient(270deg, rgba(231, 247, 248, 0.16), rgba(231, 247, 248, 0.86) 58%);
}

body.site-ltr .asphalt-products::after {
  background: linear-gradient(270deg, rgba(238, 245, 255, 0.1), rgba(238, 245, 255, 0.9) 56%);
}

body.site-ltr .product-mini-card {
  direction: ltr;
  grid-template-columns: 96px minmax(0, 1fr);
  grid-template-areas:
    "image type"
    "image title"
    "image meta";
}

body.site-ltr .product-mini-card span,
body.site-ltr .product-mini-card strong,
body.site-ltr .product-mini-card small {
  direction: ltr;
  text-align: left;
}

body.site-ltr .product-custom-card {
  grid-template-columns: 1fr;
  grid-template-areas:
    "type"
    "title"
    "meta";
}

body.site-ltr .equipment-list-panel {
  direction: ltr;
}

body.site-ltr .equipment-list-panel::before {
  background:
    var(--equipment-bg) right center / 56% auto no-repeat,
    radial-gradient(circle at 50% 50%, transparent 0 20%, rgba(20, 50, 70, 0.08) 20% 34%, transparent 34% 45%, rgba(20, 50, 70, 0.08) 45% 63%, transparent 63%) left center / 58% auto no-repeat,
    conic-gradient(from 15deg, rgba(20, 50, 70, 0.08) 0deg 22deg, transparent 22deg 45deg, rgba(20, 50, 70, 0.08) 45deg 70deg, transparent 70deg 90deg, rgba(20, 50, 70, 0.08) 90deg 114deg, transparent 114deg 140deg, rgba(20, 50, 70, 0.08) 140deg 166deg, transparent 166deg 190deg, rgba(20, 50, 70, 0.08) 190deg 214deg, transparent 214deg 238deg, rgba(20, 50, 70, 0.08) 238deg 266deg, transparent 266deg 292deg, rgba(20, 50, 70, 0.08) 292deg 318deg, transparent 318deg 360deg) left center / 58% auto no-repeat;
}

body.site-ltr .equipment-list-panel::after {
  background:
    linear-gradient(90deg, rgba(238, 244, 251, 0.24), rgba(238, 244, 251, 0.86) 68%),
    radial-gradient(circle at 76% 48%, rgba(255,255,255,0.65), transparent 34%);
}

body.site-ltr .equipment-item-card {
  direction: ltr;
  grid-template-columns: 56px minmax(0, 1fr);
}

body.site-ltr .equipment-item-card img {
  grid-column: 1;
  grid-row: 1;
}

body.site-ltr .equipment-item-card strong {
  grid-column: 2;
  grid-row: 1;
  text-align: left;
}

body.site-ltr .consultation-inner {
  direction: ltr;
}

body.site-ltr .consultation-content {
  direction: ltr;
}

body.site-ltr .footer-inner {
  direction: ltr;
}

body.site-ltr .footer-column a,
body.site-ltr .footer-column p {
  text-align: left;
}

body.site-ltr .footer-contact-column a[href^="tel"],
body.site-ltr .footer-contact-column a[href^="mailto"] {
  direction: ltr;
  text-align: left;
}

body.site-ltr .main-nav .mobile-category-link span {
  text-align: left;
}

@media (max-width: 1200px) {
  body.site-ltr .hero {
    grid-template-areas:
      "content"
      "slider"
      "lead";
  }

  body.site-ltr .hero-content,
  body.site-ltr .lead-section {
    padding-inline-start: 0;
  }
}

@media (max-width: 768px) {
  .language-switcher {
    top: 6px;
    right: auto;
    left: 54px;
  }

  body.site-ltr .language-switcher {
    left: auto;
    right: 54px;
  }

  body.site-ltr .mobile-menu-btn {
    left: auto;
    right: 0;
  }

  body.site-ltr .brand {
    align-items: flex-start;
    justify-self: start;
  }

  body.site-ltr .phone-link {
    padding-left: 28px;
    padding-right: 0;
    text-align: left;
  }

  body.site-ltr .phone-link::before {
    left: 0;
    right: auto;
  }

  body.site-ltr .phone-link small {
    text-align: left;
  }

  body.site-ltr .main-nav .mobile-category-link {
    justify-content: flex-start;
  }

  body.site-ltr .hero-content h1,
  body.site-ltr .hero-content p,
  body.site-ltr .lead-box strong,
  body.site-ltr .lead-box span {
    text-align: left;
  }

  body.site-ltr .product-mini-card,
  body.site-ltr .crushing-grid .product-mini-card {
    grid-template-columns: 84px minmax(0, 1fr);
    grid-template-areas:
      "image type"
      "image title"
      "image meta";
  }

  body.site-ltr .equipment-item-card {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  body.site-ltr .equipment-list-panel::before {
    background:
      var(--equipment-bg) center center / 112% auto no-repeat,
      radial-gradient(circle at 50% 50%, transparent 0 20%, rgba(20, 50, 70, 0.08) 20% 34%, transparent 34% 45%, rgba(20, 50, 70, 0.08) 45% 63%, transparent 63%) center center / 112% auto no-repeat;
  }
}


/* ===========================================================
   Header language switcher inside navigation
   =========================================================== */
.main-nav .language-switcher,
.language-switcher.nav-language-switcher {
  position: static;
  inset: auto;
  flex: 0 0 auto;
  margin: 0;
  align-self: center;
}

.main-nav .language-switcher {
  background: rgba(255, 255, 255, 0.82);
}

body.site-ltr .language-switcher.nav-language-switcher {
  left: auto;
  right: auto;
}

@media (max-width: 768px) {
  .main-nav .language-switcher,
  .language-switcher.nav-language-switcher {
    position: static;
    width: 100%;
    justify-content: center;
    margin: 4px 0 2px;
    order: -1;
  }
}


/* ===========================================================
   Performance + clean responsive overrides
   =========================================================== */
img,
video {
  max-width: 100%;
}

.benefits-video-section,
.stats-section {
  background: transparent !important;
}

#pageSections,
.pageSections {
  background: #ffffff;
}

.page-section,
.benefits-video-section,
.stats-section,
.products-showcase-section,
.crushing-showcase-section,
.additional-equipment-section,
.consultation-section,
.site-footer {
  contain: layout paint;
}

.product-category-panel,
.equipment-list-panel,
.video-card,
.benefit-card,
.product-mini-card,
.equipment-item-card {
  will-change: auto;
}

.hero-bg-layer img {
  opacity: 0.3;
  filter: none;
}

@media (max-width: 768px) {
  .hero-bg-layer img {
    width: 112%;
    height: 112%;
    animation: none;
  }

  .slide-image-wrap img {
    filter: none;
  }

  .benefit-card,
  .product-mini-card,
  .equipment-item-card,
  .video-card {
    box-shadow: none;
  }

  .consultation-visual,
  .consultation-visual img {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===========================================================
   v23 lead/form + consultation/footer + video cleanup fixes
   =========================================================== */
.benefits-video-section::before,
.stats-section::before {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

.benefits-video-section,
.stats-section {
  background: #ffffff !important;
}

.lead-section {
  max-width: 900px;
}

.lead-box {
  margin-bottom: 12px;
}

.lead-box strong,
.lead-box span {
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.45;
}

.request-area {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 820px;
}

.manager-img {
  width: 112px;
  height: 112px;
}

.request-form {
  max-width: 690px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 10px;
}

.form-grid input,
.consultation-inputs input {
  height: 46px;
  border-radius: 3px;
}

.policy,
.consultation-policy {
  width: 100%;
  align-items: flex-start;
  gap: 9px;
}

.policy input,
.consultation-policy input {
  -webkit-appearance: none;
  appearance: none;
  display: inline-grid;
  place-items: center;
  margin: 1px 0 0;
  border: 0;
  box-shadow: none;
  cursor: pointer;
}

.policy input:checked::after,
.consultation-policy input:checked::after {
  line-height: 1;
}

.policy span,
.consultation-policy span {
  display: block;
  max-width: 100%;
}

.request-form button {
  min-width: 146px;
  height: 45px;
}

.consultation-section {
  overflow: visible !important;
  contain: layout !important;
  margin-top: clamp(95px, 8vw, 138px);
}

.consultation-section::before {
  opacity: 0.08 !important;
}

.consultation-inner {
  overflow: visible;
  min-height: 350px;
  align-items: center;
}

.consultation-visual {
  overflow: visible;
  min-height: 0 !important;
  height: auto !important;
  margin-top: -122px;
  align-self: stretch;
  align-items: flex-end;
}

.consultation-visual img {
  width: min(620px, 100%);
  max-height: 545px;
  transform: translateY(-8px);
}

.consultation-content {
  padding-block: 42px 34px;
}

.consultation-form {
  max-width: 700px;
}

@media (max-width: 1200px) {
  .request-area {
    max-width: 100%;
  }

  .consultation-section {
    margin-top: 92px;
  }

  .consultation-visual {
    margin-top: -92px;
  }
}

@media (max-width: 768px) {
  .lead-section {
    margin-top: 18px;
  }

  .request-area {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
  }

  .manager-img {
    width: 74px;
    height: 74px;
  }

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

  .form-grid input,
  .consultation-inputs input {
    height: 44px;
  }

  .policy input,
  .consultation-policy input {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }

  .policy span,
  .consultation-policy span {
    font-size: 10px;
    line-height: 1.45;
  }

  .consultation-section {
    margin-top: 28px;
    padding-top: 32px;
    overflow: hidden !important;
  }

  .consultation-content {
    padding-block: 0;
  }
}

/* ===========================================================
   v24 mobile sticky nav + products backgrounds + stats + footer touch
   =========================================================== */

/* Keep page sections clean white and remove the outer product-section artwork */
#pageSections,
.pageSections,
.products-showcase-section {
  background: #ffffff !important;
}

.products-showcase-section::before {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

/* Concrete / asphalt cards keep their own item-based backgrounds only */
.product-category-panel::before {
  content: "" !important;
  display: block !important;
  background-image: var(--panel-bg) !important;
  background-repeat: no-repeat !important;
  background-size: 74% auto !important;
  background-position: left bottom !important;
  opacity: 0.3 !important;
}

.concrete-products::before {
  background-position: left bottom !important;
}

.asphalt-products::before {
  background-position: left bottom !important;
  background-size: 82% auto !important;
}

/* Consultation image must sit on the bottom edge so it touches the dark footer */
.consultation-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.consultation-inner {
  align-items: stretch !important;
}

.consultation-visual {
  align-self: stretch !important;
  align-items: flex-end !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.consultation-visual img {
  display: block !important;
  margin-bottom: 0 !important;
  transform: none !important;
}

.site-footer {
  margin-top: 0 !important;
}

/* Better mobile stats: text is over the SVG image, not separated or squeezed */
@media (max-width: 768px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(248, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 26px rgba(0, 111, 114, 0.08);
  }

  .stats-section {
    padding: 22px 12px 18px !important;
    background: #ffffff !important;
  }

  .stats-inner {
    width: 100%;
    max-width: 520px;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .stat-card {
    min-height: 122px !important;
    padding: 0 22px !important;
    justify-content: flex-start !important;
    border-bottom: 1px solid rgba(0, 153, 152, 0.12);
  }

  .stat-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 330px !important;
    height: 112px !important;
    margin: auto;
    object-fit: contain;
  }

  .stat-card h3,
  .stat-card:nth-child(1) h3,
  .stat-card:nth-child(2) h3,
  .stat-card:nth-child(3) h3,
  .stat-card:nth-child(4) h3 {
    position: absolute !important;
    z-index: 2;
    top: 50% !important;
    transform: translateY(-50%) !important;
    inset-inline-start: 8% !important;
    inset-inline-end: 45% !important;
    max-width: 230px !important;
    margin: 0 !important;
    color: #102c30;
    font-size: 14px !important;
    line-height: 1.25 !important;
    text-align: start !important;
  }

  .products-showcase-section {
    padding: 20px 10px 30px !important;
    background: #ffffff !important;
  }

  .product-category-panel::before {
    opacity: 0.3 !important;
    background-size: 128% auto !important;
    background-position: left bottom !important;
  }

  .asphalt-products::before {
    background-size: 136% auto !important;
  }

  .consultation-section {
    margin-top: 28px !important;
    padding-bottom: 0 !important;
  }

  .site-footer {
    margin-top: 0 !important;
  }
}

@media (min-width: 769px) {
  .consultation-section {
    margin-top: clamp(76px, 6vw, 112px) !important;
  }

  .consultation-visual {
    margin-top: -112px !important;
  }
}

/* ===========================================================
   v25 interaction, clean header, loader, hover states
   =========================================================== */

/* Header: keep phones, email and socials out of the navigation/header area */
.header-phones,
.header-contact {
  display: none !important;
}

.top-header {
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr) !important;
  align-items: center !important;
}

.main-nav {
  justify-self: end;
}

body.site-ltr .main-nav {
  justify-self: end;
}

/* Page loading overlay */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  gap: 18px;
  background: linear-gradient(180deg, #f8ffff 0%, #eaf9f9 100%);
  transition: opacity 0.36s ease, visibility 0.36s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-mark {
  color: var(--teal);
  font-size: clamp(34px, 7vw, 86px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.page-loader span {
  width: min(240px, 52vw);
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 153, 152, 0.16);
  position: relative;
}

.page-loader span::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 42%;
  border-radius: inherit;
  background: var(--teal);
  animation: pageLoaderBar 1.05s ease-in-out infinite;
}

@keyframes pageLoaderBar {
  0% { inset-inline-start: -45%; }
  100% { inset-inline-start: 105%; }
}

body.is-loading {
  overflow: hidden;
}

/* Lazy video buffering indicator */
.video-card {
  position: relative;
}

.video-card.video-pending video {
  opacity: 0;
}

.video-card.video-ready video {
  opacity: 1;
  transition: opacity 0.28s ease;
}

.video-loader {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  animation: videoLoaderSpin 0.8s linear infinite;
}

.video-card.video-ready .video-loader {
  display: none;
}

@keyframes videoLoaderSpin {
  to { transform: rotate(360deg); }
}

/* Scroll reveal animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.48s ease, transform 0.48s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Product sections: no outer background, each panel uses its own first-item background */
.products-showcase-section {
  background: #ffffff !important;
}

.products-showcase-section::before {
  display: none !important;
  content: none !important;
}

.product-category-panel::before {
  background-image: var(--panel-bg) !important;
  opacity: 0.3 !important;
  filter: none !important;
}

.concrete-products::before {
  background-position: right bottom !important;
  background-size: min(76%, 720px) auto !important;
}

.asphalt-products::before {
  background-position: right bottom !important;
  background-size: min(82%, 620px) auto !important;
}

.crushing-products::before {
  background-position: right top !important;
  background-size: min(78%, 920px) auto !important;
}

/* Strong hover style like the reference: teal to dark teal */
.product-mini-card,
.equipment-item-card {
  overflow: hidden;
}

.product-mini-card:hover,
.product-mini-card:focus-visible,
.equipment-item-card:hover,
.equipment-item-card:focus-visible {
  transform: translateY(-2px) !important;
  background: linear-gradient(135deg, #0a9fa4 0%, #006f72 100%) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 16px 34px rgba(0, 111, 114, 0.18) !important;
  outline: none;
}

.product-mini-card:hover span,
.product-mini-card:hover strong,
.product-mini-card:hover small,
.product-mini-card:focus-visible span,
.product-mini-card:focus-visible strong,
.product-mini-card:focus-visible small,
.equipment-item-card:hover strong,
.equipment-item-card:focus-visible strong {
  color: #ffffff !important;
}

.product-mini-card:hover img,
.product-mini-card:focus-visible img,
.equipment-item-card:hover img,
.equipment-item-card:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.03);
}

.product-mini-card img,
.equipment-item-card img {
  transition: transform 0.22s ease, filter 0.22s ease;
}

/* Additional equipment: one clean panel, one centered background, white divider */
.additional-equipment-section {
  background: #ffffff !important;
}

.additional-equipment-section::before {
  display: none !important;
  content: none !important;
}

.equipment-list-panel::before {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  background: var(--equipment-bg) center center / min(58%, 980px) auto no-repeat !important;
  opacity: 0.3 !important;
}

.equipment-list-panel::after {
  background:
    linear-gradient(90deg, rgba(238, 244, 251, 0.90), rgba(238, 244, 251, 0.70) 48%, rgba(238, 244, 251, 0.90)),
    radial-gradient(circle at 50% 48%, rgba(255,255,255,0.52), transparent 36%) !important;
}

.equipment-subsection {
  position: relative;
  z-index: 2;
}

.equipment-subsection-bordered {
  margin-top: 44px;
  padding-top: 44px;
  border-top: 6px solid rgba(255, 255, 255, 0.9);
}

.equipment-subsection h2 {
  z-index: 3;
}

/* Consultation image touches footer with no visible gap */
.consultation-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.consultation-inner {
  align-items: end !important;
}

.consultation-visual {
  align-self: end !important;
  min-height: 0 !important;
  padding-bottom: 0 !important;
}

.consultation-visual img {
  display: block;
  margin-bottom: -1px !important;
}

.site-footer {
  margin-top: 0 !important;
}

/* Mobile nav: sticky header, only product categories inside menu */
@media (max-width: 768px) {
  .site-header {
    position: sticky !important;
    top: 0;
    z-index: 999;
    background: rgba(248, 255, 255, 0.97) !important;
  }

  .top-header {
    grid-template-columns: 1fr !important;
  }

  .main-nav {
    justify-self: stretch;
  }

  .main-nav > a:not(.mobile-category-link),
  .main-nav .language-switcher,
  .main-nav .nav-cta {
    display: none !important;
  }

  body.menu-open .main-nav {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    padding-top: 8px;
  }

  .main-nav .mobile-category-link {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: 52px;
    padding: 9px 12px;
    background: var(--teal-card);
    color: #102c30;
    white-space: normal;
  }

  .main-nav .mobile-category-link:hover,
  .main-nav .mobile-category-link:focus-visible {
    background: var(--teal-dark) !important;
    color: #ffffff !important;
  }

  .main-nav .mobile-category-link:hover img,
  .main-nav .mobile-category-link:focus-visible img {
    filter: brightness(0) invert(1);
  }

  .concrete-products::before,
  .asphalt-products::before,
  .crushing-products::before {
    background-position: right bottom !important;
    background-size: 132% auto !important;
  }

  .equipment-subsection-bordered {
    margin-top: 28px;
    padding-top: 28px;
    border-top-width: 4px;
  }

  .equipment-list-panel::before {
    background-size: 112% auto !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader span::after,
  .video-loader {
    animation: none !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===========================================================
   v26 category nav opens products/items mega menu
   =========================================================== */
.site-header {
  position: relative;
  z-index: 100;
}

.category-item.is-active,
.category-item[data-has-mega="true"]:hover,
.category-item[data-has-mega="true"]:focus-visible {
  background: var(--teal-dark) !important;
  border-color: var(--teal-dark) !important;
  color: #ffffff !important;
}

.category-item.is-active img,
.category-item[data-has-mega="true"]:hover img,
.category-item[data-has-mega="true"]:focus-visible img {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.category-item.is-active span,
.category-item[data-has-mega="true"]:hover span,
.category-item[data-has-mega="true"]:focus-visible span {
  color: #ffffff !important;
}

.nav-mega-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  top: calc(100% + 8px);
  z-index: 1200;
  display: none;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  background: rgba(239, 249, 250, 0.97);
  border: 1px solid rgba(0, 111, 114, 0.12);
  box-shadow: 0 28px 60px rgba(0, 60, 70, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-mega-panel.is-open {
  display: block;
  animation: megaPanelIn 0.18s ease-out both;
}

@keyframes megaPanelIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-panel-inner {
  display: grid;
  gap: 0;
  padding: 0;
  direction: rtl;
}

body.site-ltr .mega-panel-inner {
  direction: ltr;
}

.mega-group {
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
  gap: 8px;
  padding: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.86);
}

.mega-group:last-child {
  border-bottom: 0;
}

.mega-group-title {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 5px;
  color: #006f73;
  background: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.22;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.mega-group-title:hover,
.mega-group-title:focus-visible {
  color: #ffffff;
  background: var(--teal-dark);
  outline: none;
}

.mega-group-title img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 58px;
}

.mega-group-title:hover img,
.mega-group-title:focus-visible img {
  filter: brightness(0) invert(1);
}

.mega-items-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 6px;
}

.mega-item-card {
  min-height: 84px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 5px;
  color: #006f73;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: 0.2s ease;
}

body.site-rtl .mega-item-card {
  grid-template-columns: minmax(0, 1fr) 64px;
}

body.site-rtl .mega-item-card .mega-item-img {
  grid-column: 2;
  grid-row: 1;
}

body.site-rtl .mega-item-card span {
  grid-column: 1;
  grid-row: 1;
}

.mega-item-card:hover,
.mega-item-card:focus-visible {
  transform: translateY(-2px);
  color: #ffffff;
  background: linear-gradient(135deg, #0a9fa4 0%, #006f72 100%);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 14px 32px rgba(0, 111, 114, 0.16);
  outline: none;
}

.mega-item-card img {
  width: 64px;
  height: 54px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.2s ease;
}

.mega-item-card:hover img,
.mega-item-card:focus-visible img {
  transform: scale(1.05);
}

.mega-item-card span {
  min-width: 0;
  display: grid;
  gap: 3px;
  text-align: right;
}

body.site-ltr .mega-item-card span {
  text-align: left;
}

.mega-item-card strong {
  display: block;
  color: currentColor;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-item-card small {
  display: block;
  color: currentColor;
  opacity: 0.92;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.mobile-category-items {
  display: none;
}

@media (max-width: 1500px) {
  .mega-items-grid {
    grid-template-columns: repeat(5, minmax(140px, 1fr));
  }
}

@media (max-width: 1200px) {
  .mega-group {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .mega-items-grid {
    grid-template-columns: repeat(4, minmax(130px, 1fr));
  }

  .mega-item-card strong {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .nav-mega-panel {
    display: none !important;
  }

  .main-nav .mobile-category-link {
    width: 100%;
    border: 0;
    border-radius: 5px;
    font-family: inherit;
    cursor: pointer;
    text-align: inherit;
    transition: 0.2s ease;
  }

  .main-nav .mobile-category-link.is-active,
  .main-nav .mobile-category-link[aria-expanded="true"] {
    background: var(--teal-dark) !important;
    color: #ffffff !important;
  }

  .main-nav .mobile-category-link.is-active img,
  .main-nav .mobile-category-link[aria-expanded="true"] img {
    filter: brightness(0) invert(1);
  }

  .mobile-category-items.is-open {
    display: block;
    grid-column: 1 / -1;
    margin: -2px 0 6px;
    padding: 6px;
    border-radius: 6px;
    background: rgba(0, 111, 114, 0.08);
  }

  .mobile-category-items .mega-panel-inner {
    display: grid;
    gap: 8px;
  }

  .mobile-category-items .mega-group {
    display: block;
    padding: 0;
    border: 0;
  }

  .mobile-category-items .mega-group-title {
    min-height: 42px;
    padding: 8px 10px;
    margin-bottom: 6px;
    font-size: 13px;
  }

  .mobile-category-items .mega-group-title img {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .mobile-category-items .mega-items-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .mobile-category-items .mega-item-card,
  body.site-rtl .mobile-category-items .mega-item-card,
  body.site-ltr .mobile-category-items .mega-item-card {
    min-height: 58px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 8px;
    padding: 7px 9px;
  }

  body.site-rtl .mobile-category-items .mega-item-card {
    grid-template-columns: minmax(0, 1fr) 52px;
  }

  .mobile-category-items .mega-item-card img {
    width: 52px;
    height: 42px;
  }

  .mobile-category-items .mega-item-card strong {
    font-size: 13px;
  }

  .mobile-category-items .mega-item-card small {
    font-size: 11px;
  }
}

/* ===========================================================
   v27 mobile: show main links separately from product nav
   =========================================================== */
.mobile-actions-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-actions-nav {
    display: none;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding-top: 8px;
  }

  body.menu-open .mobile-actions-nav {
    display: grid;
  }

  .mobile-actions-nav a,
  .mobile-actions-nav .language-switcher {
    min-height: 38px;
    border-radius: 5px;
  }

  .mobile-actions-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    color: #102c30;
    background: var(--teal-soft);
    font-size: 13px;
    line-height: 1.15;
    font-weight: 900;
    text-align: center;
    white-space: normal;
  }

  .mobile-actions-nav a:hover,
  .mobile-actions-nav a:focus-visible {
    color: #ffffff;
    background: var(--teal-dark);
    outline: none;
  }

  .mobile-actions-nav .catalog-link,
  .mobile-actions-nav .contact-link,
  .mobile-actions-nav .nav-cta {
    grid-column: 1 / -1;
  }

  .mobile-actions-nav .nav-cta {
    min-height: 45px;
    color: #ffffff;
    background: var(--red);
    font-size: 16px;
  }

  .mobile-actions-nav .nav-cta:hover,
  .mobile-actions-nav .nav-cta:focus-visible {
    background: #d8103b;
  }

  .mobile-actions-nav .language-switcher,
  .mobile-actions-nav .nav-language-switcher {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    padding: 0;
    background: transparent;
  }

  .mobile-actions-nav .lang-btn {
    width: 100%;
    min-height: 38px;
    border: 0;
    border-radius: 5px;
    color: #102c30;
    background: var(--teal-soft);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-actions-nav .lang-btn.active,
  .mobile-actions-nav .lang-btn:hover,
  .mobile-actions-nav .lang-btn:focus-visible {
    color: #ffffff;
    background: var(--teal-dark);
    outline: none;
  }

  /* Keep product/category items inside .main-nav, and keep top links outside it on mobile. */
  body.menu-open .main-nav {
    margin-top: 7px;
  }

  .main-nav > a:not(.mobile-category-link),
  .main-nav > .language-switcher,
  .main-nav > .nav-language-switcher,
  .main-nav > .nav-cta {
    display: none !important;
  }
}

/* v28: asphalt section match reference layout exactly */
body.site-rtl .asphalt-products {
  position: relative;
  min-height: 572px;
  padding: 28px 34px 34px;
}

body.site-rtl .asphalt-products::before {
  background-position: right bottom !important;
  background-size: min(72%, 650px) auto !important;
  opacity: 0.3 !important;
}

body.site-rtl .asphalt-products h2 {
  margin-right: auto !important;
  margin-left: 0 !important;
  text-align: left !important;
}

body.site-rtl .asphalt-grid {
  direction: ltr;
  grid-template-columns: repeat(2, minmax(0, 238px));
  justify-content: start;
  align-content: start;
  max-width: 520px;
  gap: 10px;
}

body.site-rtl .asphalt-grid .product-mini-card {
  direction: rtl;
  text-align: right;
}

body.site-rtl .asphalt-grid .product-mini-card img {
  justify-self: center;
}

body.site-rtl .asphalt-grid .asphalt-custom-card {
  grid-column: 1 / 2;
  max-width: 280px;
  min-height: 94px;
}

body.site-rtl .asphalt-grid .asphalt-custom-card strong,
body.site-rtl .asphalt-grid .asphalt-custom-card small,
body.site-rtl .asphalt-grid .asphalt-custom-card span {
  text-align: right;
}

@media (max-width: 768px) {
  body.site-rtl .asphalt-products {
    min-height: auto;
    padding: 20px 14px 22px;
  }

  body.site-rtl .asphalt-products h2 {
    margin-right: 0 !important;
    margin-left: auto !important;
    text-align: right !important;
  }

  body.site-rtl .asphalt-grid {
    direction: rtl;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 8px;
  }

  body.site-rtl .asphalt-grid .asphalt-custom-card {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

/* ===========================================================
   v28 exact asphalt panel + consistent product card layout
   =========================================================== */
.products-showcase-section {
  padding: 20px 20px 50px !important;
  background: #ffffff !important;
}

.products-showcase-inner {
  align-items: stretch !important;
}

.product-category-panel {
  box-shadow: none !important;
  border: 1px solid rgba(255, 255, 255, 0.92) !important;
}

.product-category-panel::before {
  opacity: 0.3 !important;
  filter: saturate(0.96) !important;
}

.product-category-panel::after {
  z-index: 0 !important;
  pointer-events: none !important;
}

.product-category-panel h2 {
  margin-top: 0 !important;
  margin-bottom: 48px !important;
  color: #303943 !important;
  letter-spacing: -1px !important;
}

/* Cards: image on the left, copy on the right for both Arabic and English */
.product-mini-card {
  grid-template-columns: 96px minmax(0, 1fr) !important;
  grid-template-areas:
    "image type"
    "image title"
    "image meta" !important;
  background: rgba(255, 255, 255, 0.82) !important;
  border-color: rgba(255, 255, 255, 0.92) !important;
  box-shadow: none !important;
  backdrop-filter: blur(4px) !important;
}

.product-mini-card img {
  grid-area: image !important;
  justify-self: center !important;
}

.product-mini-card span,
.product-mini-card strong,
.product-mini-card small {
  transition: color 0.2s ease !important;
}

body.site-rtl .product-mini-card span,
body.site-rtl .product-mini-card strong,
body.site-rtl .product-mini-card small {
  text-align: right !important;
  direction: rtl !important;
}

body.site-ltr .product-mini-card span,
body.site-ltr .product-mini-card strong,
body.site-ltr .product-mini-card small {
  text-align: left !important;
  direction: ltr !important;
}

.product-mini-card:hover,
.product-mini-card:focus-visible {
  transform: none !important;
  background: #57b5b5 !important;
  border-color: #57b5b5 !important;
  box-shadow: none !important;
  outline: none !important;
}

.product-mini-card:hover span,
.product-mini-card:hover strong,
.product-mini-card:hover small,
.product-mini-card:focus-visible span,
.product-mini-card:focus-visible strong,
.product-mini-card:focus-visible small {
  color: #ffffff !important;
}

.product-custom-card {
  grid-template-columns: 1fr !important;
  grid-template-areas:
    "type"
    "title"
    "meta" !important;
  justify-self: start !important;
}

.product-custom-card span,
.product-custom-card strong,
.product-custom-card small {
  text-align: inherit !important;
}

/* Concrete keeps the same product-section language, with image anchored right/bottom */
.concrete-products::before {
  background-position: right bottom !important;
  background-size: min(76%, 720px) auto !important;
}

body.site-rtl .concrete-products h2,
body.site-rtl .asphalt-products h2 {
  margin-left: auto !important;
  margin-right: 0 !important;
  text-align: right !important;
}

body.site-ltr .concrete-products h2,
body.site-ltr .asphalt-products h2 {
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
}

body.site-rtl .concrete-grid,
body.site-rtl .asphalt-grid {
  margin-left: auto !important;
  margin-right: 0 !important;
  direction: rtl !important;
}

body.site-ltr .concrete-grid,
body.site-ltr .asphalt-grid {
  margin-left: 0 !important;
  margin-right: auto !important;
  direction: ltr !important;
}

/* Asphalt panel matches the reference: light blue card, big right-side silo, 2 cards + custom card */
.asphalt-products {
  min-height: 590px !important;
  padding: 34px 34px 32px !important;
  background: #edf5ff !important;
  border-radius: 8px !important;
}

.asphalt-products::before {
  background-position: right bottom !important;
  background-size: min(82%, 620px) auto !important;
  opacity: 0.3 !important;
}

.asphalt-products::after {
  background:
    linear-gradient(270deg, rgba(237, 245, 255, 0.38) 0%, rgba(237, 245, 255, 0.86) 56%, rgba(237, 245, 255, 0.96) 100%) !important;
}

.asphalt-products h2 {
  font-size: clamp(38px, 3vw, 58px) !important;
  line-height: 1.05 !important;
}

.asphalt-grid {
  max-width: 620px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

.asphalt-grid .product-mini-card {
  min-height: 96px !important;
  grid-template-columns: 104px minmax(0, 1fr) !important;
  padding: 12px 16px !important;
}

.asphalt-grid .product-mini-card img {
  width: 100px !important;
  height: 70px !important;
}

.asphalt-grid .product-mini-card span {
  font-size: 11px !important;
}

.asphalt-grid .product-mini-card strong {
  font-size: 20px !important;
  line-height: 1.15 !important;
}

.asphalt-grid .product-mini-card small {
  font-size: 14px !important;
}

.asphalt-custom-card {
  grid-column: 1 / -1 !important;
  width: min(360px, 100%) !important;
  max-width: 360px !important;
  min-height: 104px !important;
  padding: 18px 20px !important;
  align-content: center !important;
  justify-self: start !important;
}

.asphalt-custom-card strong {
  font-size: 25px !important;
  line-height: 1.1 !important;
}

@media (max-width: 1200px) {
  .products-showcase-inner {
    grid-template-columns: 1fr !important;
  }

  .asphalt-products {
    min-height: 520px !important;
  }
}

@media (max-width: 768px) {
  .products-showcase-section {
    padding: 14px 10px 34px !important;
  }

  .product-category-panel,
  .asphalt-products {
    min-height: 520px !important;
    padding: 28px 28px 30px !important;
    border-radius: 8px !important;
  }

  .product-category-panel h2,
  .asphalt-products h2 {
    margin-bottom: 38px !important;
    font-size: 42px !important;
  }

  .concrete-grid,
  .asphalt-grid {
    max-width: 620px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .product-mini-card,
  .asphalt-grid .product-mini-card {
    min-height: 96px !important;
    grid-template-columns: 96px minmax(0, 1fr) !important;
    grid-template-areas:
      "image type"
      "image title"
      "image meta" !important;
    padding: 11px 14px !important;
  }

  .product-mini-card img,
  .asphalt-grid .product-mini-card img {
    width: 92px !important;
    height: 66px !important;
  }

  .product-mini-card strong,
  .asphalt-grid .product-mini-card strong {
    font-size: 18px !important;
  }

  .asphalt-custom-card {
    width: min(360px, 100%) !important;
  }
}

@media (max-width: 520px) {
  .product-category-panel,
  .asphalt-products {
    min-height: 500px !important;
    padding: 22px 18px 26px !important;
  }

  .product-category-panel h2,
  .asphalt-products h2 {
    font-size: 36px !important;
    margin-bottom: 32px !important;
  }

  .concrete-grid,
  .asphalt-grid {
    grid-template-columns: 1fr !important;
  }

  .product-mini-card,
  .asphalt-grid .product-mini-card {
    grid-template-columns: 88px minmax(0, 1fr) !important;
    min-height: 88px !important;
  }

  .product-mini-card img,
  .asphalt-grid .product-mini-card img {
    width: 84px !important;
    height: 60px !important;
  }

  .asphalt-products::before {
    background-size: 118% auto !important;
    background-position: right bottom !important;
  }
}

/* ===========================================================
   v29 asphalt panel bottom-left background + glass cards
   =========================================================== */
.product-category-panel.asphalt-products::before {
  background-image: url("../img/home/services/8.png") !important;
  background-repeat: no-repeat !important;
  background-position: left bottom !important;
  background-size: min(42%, 430px) auto !important;
  opacity: 0.3 !important;
}

body.site-rtl .product-category-panel.asphalt-products::before {
  background-position: left bottom !important;
}

body.site-ltr .product-category-panel.asphalt-products::before {
  background-position: left bottom !important;
}

.product-category-panel.asphalt-products::after {
  background: linear-gradient(
    180deg,
    rgba(237, 245, 255, 0.18) 0%,
    rgba(237, 245, 255, 0.52) 48%,
    rgba(237, 245, 255, 0.78) 100%
  ) !important;
}

.product-category-panel.asphalt-products .product-mini-card,
.product-category-panel.asphalt-products .product-custom-card {
  background: rgba(255, 255, 255, 0.10) !important;
  border-color: rgba(255, 255, 255, 0.58) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.product-category-panel.asphalt-products .product-mini-card:hover,
.product-category-panel.asphalt-products .product-mini-card:focus-visible,
.product-category-panel.asphalt-products .product-custom-card:hover,
.product-category-panel.asphalt-products .product-custom-card:focus-visible {
  background: #57b5b5 !important;
  border-color: #57b5b5 !important;
}

@media (max-width: 768px) {
  .product-category-panel.asphalt-products::before {
    background-size: min(70%, 360px) auto !important;
    background-position: left bottom !important;
  }
}

@media (max-width: 520px) {
  .product-category-panel.asphalt-products::before {
    background-size: 88% auto !important;
    background-position: left bottom !important;
  }
}

/* ===========================================================
   v30 cropped product-panel artwork backgrounds
   =========================================================== */
.product-category-panel.concrete-products::before {
  background-image: url("../img/home/services/1.png") !important;
  background-repeat: no-repeat !important;
  background-size: min(92%, 860px) auto !important;
  background-position: right -18% bottom -12% !important;
  opacity: 0.3 !important;
  pointer-events: none !important;
}

.product-category-panel.asphalt-products::before {
  background-image: url("../img/home/services/8.png") !important;
  background-repeat: no-repeat !important;
  background-size: min(92%, 760px) auto !important;
  background-position: left -18% bottom -12% !important;
  opacity: 0.3 !important;
  pointer-events: none !important;
}

body.site-rtl .product-category-panel.concrete-products::before {
  background-position: right -18% bottom -12% !important;
}

body.site-ltr .product-category-panel.concrete-products::before {
  background-position: right -18% bottom -12% !important;
}

body.site-rtl .product-category-panel.asphalt-products::before,
body.site-ltr .product-category-panel.asphalt-products::before {
  background-position: left -18% bottom -12% !important;
}

@media (max-width: 1200px) {
  .product-category-panel.concrete-products::before {
    background-size: min(112%, 720px) auto !important;
    background-position: right -28% bottom -8% !important;
  }

  .product-category-panel.asphalt-products::before {
    background-size: min(112%, 680px) auto !important;
    background-position: left -28% bottom -8% !important;
  }
}

@media (max-width: 768px) {
  .product-category-panel.concrete-products::before,
  .product-category-panel.asphalt-products::before {
    background-size: 128% auto !important;
    opacity: 0.22 !important;
  }

  .product-category-panel.concrete-products::before {
    background-position: right -42% bottom -4% !important;
  }

  .product-category-panel.asphalt-products::before {
    background-position: left -42% bottom -4% !important;
  }
}

/* ===========================================================
   v31 clear section artwork backgrounds (no blur)
   =========================================================== */
.product-category-panel::before,
.crushing-products::before,
.equipment-list-panel::before {
  opacity: 0.3 !important;
  filter: none !important;
  -webkit-filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
  pointer-events: none !important;
}

.product-mini-card,
.equipment-item-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(255, 255, 255, 0.90) !important;
}

.product-category-panel.concrete-products::before {
  background-image: url("../img/home/services/1.png") !important;
  background-repeat: no-repeat !important;
  background-size: min(104%, 900px) auto !important;
  background-position: right -24% bottom -16% !important;
}

.product-category-panel.asphalt-products::before {
  background-image: url("../img/home/services/8.png") !important;
  background-repeat: no-repeat !important;
  background-size: min(104%, 820px) auto !important;
  background-position: left -24% bottom -16% !important;
}

.product-category-panel.crushing-products::before {
  background-image: var(--panel-bg) !important;
  background-repeat: no-repeat !important;
  background-size: min(104%, 980px) auto !important;
  background-position: right -24% bottom -14% !important;
}

.additional-equipment-section {
  background: #ffffff !important;
}

.additional-equipment-section::before {
  display: none !important;
  content: none !important;
}

.equipment-list-panel {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
}

.equipment-list-panel::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  background-image: var(--equipment-bg) !important;
  background-repeat: no-repeat !important;
  background-size: min(92%, 1040px) auto !important;
  background-position: center center !important;
}

.equipment-list-panel::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background: rgba(238, 244, 251, 0.78) !important;
}

.equipment-subsection {
  position: relative !important;
  z-index: 2 !important;
}

.equipment-subsection-bordered {
  border-top: 8px solid #ffffff !important;
}

.equipment-subsection h2,
.equipment-items-grid {
  position: relative !important;
  z-index: 3 !important;
}

@media (max-width: 1200px) {
  .product-category-panel.concrete-products::before,
  .product-category-panel.asphalt-products::before,
  .product-category-panel.crushing-products::before {
    background-size: 125% auto !important;
  }

  .equipment-list-panel::before {
    background-size: 115% auto !important;
  }
}

@media (max-width: 768px) {
  .product-category-panel.concrete-products::before,
  .product-category-panel.asphalt-products::before,
  .product-category-panel.crushing-products::before {
    opacity: 0.22 !important;
    background-size: 140% auto !important;
    background-position: center bottom !important;
  }

  .equipment-list-panel::before {
    opacity: 0.22 !important;
    background-size: 135% auto !important;
    background-position: center center !important;
  }
}

/* ===========================================================
   v32 crushing background position fix
   - artwork stays on the right side
   - cards stay clean with no artwork behind them
   =========================================================== */
.product-category-panel.crushing-products {
  position: relative !important;
  overflow: hidden !important;
}

.product-category-panel.crushing-products::before,
.crushing-products::before {
  background-image: var(--panel-bg) !important;
  background-repeat: no-repeat !important;
  background-size: min(58%, 760px) auto !important;
  background-position: right -12% top 20px !important;
  opacity: 0.3 !important;
  filter: none !important;
  -webkit-filter: none !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.product-category-panel.crushing-products::after,
.crushing-products::after {
  background: linear-gradient(90deg, rgba(237, 248, 249, 0.96) 0%, rgba(237, 248, 249, 0.92) 58%, rgba(237, 248, 249, 0.38) 100%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.crushing-products h2,
.crushing-products .crushing-grid,
.crushing-products .product-mini-card,
.crushing-products .product-custom-card {
  position: relative !important;
  z-index: 3 !important;
}

.crushing-products .crushing-grid {
  max-width: 820px !important;
  margin-inline-end: auto !important;
}

body.site-rtl .crushing-products .crushing-grid {
  margin-right: 0 !important;
  margin-left: auto !important;
}

body.site-ltr .crushing-products .crushing-grid {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.crushing-products .product-mini-card,
.crushing-products .product-custom-card {
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(255, 255, 255, 0.98) !important;
}

.crushing-products .product-mini-card:hover,
.crushing-products .product-mini-card:focus-visible,
.crushing-products .product-custom-card:hover,
.crushing-products .product-custom-card:focus-visible {
  background: #57b5b5 !important;
  border-color: #57b5b5 !important;
}

@media (max-width: 1200px) {
  .product-category-panel.crushing-products::before,
  .crushing-products::before {
    background-size: min(68%, 660px) auto !important;
    background-position: right -20% top 24px !important;
  }

  .crushing-products .crushing-grid {
    max-width: 760px !important;
  }
}

@media (max-width: 768px) {
  .product-category-panel.crushing-products::before,
  .crushing-products::before {
    background-size: 92% auto !important;
    background-position: right -48% bottom 8px !important;
    opacity: 0.22 !important;
  }

  .crushing-products .crushing-grid {
    max-width: 100% !important;
  }
}


/* ===========================================================
   Category and item pages
   =========================================================== */
.category-page-hero,
.item-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 76px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 60%, rgba(0, 153, 152, 0.16), transparent 34%),
    linear-gradient(120deg, rgba(223, 246, 247, 0.96), rgba(255, 255, 255, 0.92));
}

.category-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.16;
  pointer-events: none;
}

.category-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.category-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 70px rgba(0, 128, 128, 0.11);
  backdrop-filter: blur(8px);
}

.category-hero-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 18px;
}

.category-hero-content span,
.category-section-head span,
.item-detail-copy span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 5px 13px;
  border-radius: 99px;
  color: var(--teal-dark);
  background: rgba(0, 153, 152, 0.12);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.category-hero-content h1 {
  max-width: 900px;
  margin: 12px 0 16px;
  color: var(--dark);
  font-size: clamp(42px, 5vw, 82px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.3px;
}

.category-hero-content p {
  max-width: 980px;
  color: #112f33;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}

.category-items-section {
  padding: 52px 24px 70px;
  background: linear-gradient(180deg, #ffffff, #effcfc);
}

.category-items-inner {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.category-section-head {
  margin-bottom: 24px;
}

.category-section-head h2 {
  margin-top: 10px;
  color: var(--dark);
  font-size: clamp(32px, 3.2vw, 54px);
  line-height: 1.1;
  font-weight: 900;
}

.category-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 153, 152, 0.32);
  border-left: 1px solid rgba(0, 153, 152, 0.32);
  background: rgba(223, 246, 247, 0.34);
}

.category-page-card {
  position: relative;
  min-height: 270px;
  display: grid;
  grid-template-columns: minmax(170px, 0.86fr) minmax(220px, 1.14fr);
  gap: 26px;
  align-items: center;
  padding: 34px 38px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.88), rgba(239,252,252,0.75)),
    radial-gradient(circle at 10% 80%, rgba(0,153,152,0.1), transparent 34%);
  border-right: 1px solid rgba(0, 153, 152, 0.32);
  border-bottom: 1px solid rgba(0, 153, 152, 0.32);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.category-page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/home/3.png") left bottom / 56% auto no-repeat;
  opacity: 0.035;
  pointer-events: none;
}

.category-page-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(223,246,247,0.88)),
    radial-gradient(circle at 10% 80%, rgba(0,153,152,0.14), transparent 34%);
  box-shadow: 0 24px 56px rgba(0, 128, 128, 0.12);
}

.category-page-card figure {
  position: relative;
  z-index: 1;
  min-height: 170px;
  display: grid;
  place-items: center;
}

.category-page-card-img {
  width: 100%;
  max-height: 215px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 91, 91, 0.12));
  transition: transform 0.25s ease;
}

.category-page-card:hover .category-page-card-img {
  transform: scale(1.035);
}

.category-page-card-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.category-page-card-copy em {
  margin-bottom: 8px;
  color: rgba(0, 153, 152, 0.18);
  font-size: 72px;
  line-height: 0.82;
  font-style: normal;
  font-weight: 900;
}

.category-page-card-copy span {
  color: #3f4a52;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 900;
}

.category-page-card-copy strong {
  margin-top: 6px;
  color: #303943;
  font-size: clamp(28px, 2.45vw, 46px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.category-page-card-copy small {
  margin-top: 15px;
  color: var(--teal-dark);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.category-page-card-copy b {
  width: fit-content;
  min-height: 46px;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 4px;
  color: var(--white);
  background: var(--teal);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  transition: background 0.24s ease;
}

.category-page-card:hover .category-page-card-copy b {
  background: var(--teal-dark);
}

.category-page-custom-card {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.92), rgba(223,246,247,0.88)),
    repeating-linear-gradient(45deg, rgba(0,153,152,0.08) 0 14px, transparent 14px 28px);
}

.category-custom-mark {
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(0, 153, 152, 0.72);
  background: rgba(0, 153, 152, 0.08);
  border: 2px dashed rgba(0, 153, 152, 0.34);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
}

.item-page-hero {
  min-height: 620px;
  padding: 70px 24px;
}

.item-detail-hero-inner {
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: 44px;
}

.item-detail-copy {
  position: relative;
  z-index: 1;
}

.item-detail-copy h1 {
  margin: 16px 0 18px;
  color: var(--dark);
  font-size: clamp(44px, 5.2vw, 84px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.item-detail-copy p {
  color: #31464a;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 900;
}

.item-detail-copy strong {
  display: block;
  margin-top: 12px;
  color: var(--teal-dark);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 900;
}

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

.item-detail-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 4px;
  color: var(--teal-dark);
  background: rgba(0, 153, 152, 0.11);
  font-size: 16px;
  font-weight: 900;
}

.item-detail-actions .item-request-link {
  color: var(--white);
  background: var(--red);
}

.item-detail-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.item-detail-img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 28px 44px rgba(0, 118, 118, 0.16));
}

@media (max-width: 980px) {
  .category-page-grid,
  .item-detail-hero-inner {
    grid-template-columns: 1fr;
  }

  .category-page-card {
    grid-template-columns: minmax(140px, 0.65fr) minmax(210px, 1fr);
  }
}

@media (max-width: 640px) {
  .category-page-hero,
  .item-page-hero {
    min-height: auto;
    padding: 42px 14px;
  }

  .category-hero-content {
    padding: 26px 20px;
  }

  .category-page-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 20px;
  }

  .category-page-card figure {
    min-height: 140px;
  }

  .category-page-card-copy em {
    font-size: 54px;
  }

  .item-detail-visual {
    min-height: 260px;
  }
}


/* ===========================================================
   Category pages: home-style slider hero for selected categories
   =========================================================== */
.category-slider-hero {
  min-height: calc(100vh - 205px);
  padding-top: 54px;
  padding-bottom: 54px;
}

.category-slider-hero .hero-content {
  align-self: center;
}

.category-slider-copy .hero-label {
  margin-bottom: 13px;
}

.category-slider-copy h1 {
  max-width: 980px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.category-slider-copy .category-slider-capacity {
  max-width: 760px;
  margin: 0 0 7px;
  color: #2e3b40;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 800;
}

.category-slider-copy .category-slider-capacity::first-letter {
  color: inherit;
}

.category-slider-copy p:not(.category-slider-capacity) {
  max-width: 920px;
  color: #061719;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 600;
}

.category-slider-hero .hero-slider {
  min-height: 485px;
}

.category-slider-hero .slide-image-wrap {
  max-width: 780px;
}

.category-slider-hero .slide-image-wrap img {
  max-height: 525px;
}

.category-slider-hero .slide-copy {
  width: min(430px, 74%);
}

.category-slider-hero .slide-copy strong {
  font-size: clamp(24px, 2.55vw, 42px);
}

.category-slider-hero .slide-copy span {
  font-size: clamp(15px, 1.55vw, 24px);
}

.foundry-category-page .hero-label,
.foundry-category-page .category-slider-capacity {
  color: #8a3f19;
  background: rgba(138, 63, 25, 0.1);
}

.foundry-category-page h1 {
  color: #263f42;
  text-shadow: 0 2px 0 rgba(255,255,255,0.85);
}

@media (max-width: 1100px) {
  .category-slider-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "slider"
      "lead";
    padding-top: 42px;
  }

  .category-slider-hero .hero-content,
  .category-slider-hero .lead-section {
    justify-self: center;
    max-width: 980px;
    padding-inline-end: 0;
  }

  .category-slider-hero .hero-slider {
    min-height: 390px;
  }

  .category-slider-hero .slide-image-wrap {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .category-slider-hero {
    padding: 34px 14px 38px;
    gap: 22px;
  }

  .category-slider-copy h1 {
    font-size: clamp(32px, 9vw, 46px);
  }

  .category-slider-copy .category-slider-capacity,
  .category-slider-copy p:not(.category-slider-capacity) {
    font-size: 15px;
  }

  .category-slider-hero .hero-slider {
    min-height: 315px;
  }

  .category-slider-hero .slide-image-wrap {
    min-height: 285px;
  }

  .category-slider-hero .slide-copy {
    left: 18px;
    bottom: 44px;
    width: min(320px, 78%);
  }

  .category-slider-hero .request-area {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .category-slider-hero .manager-img {
    width: 86px;
    height: 86px;
  }
}


/* ===========================================================
   About Company Page
   =========================================================== */
.about-page-main {
  min-height: auto;
  background: #f5ffff;
  color: var(--dark);
}

.about-title-strip {
  width: 100%;
  padding: 14px 24px 7px;
  background: #eefafa;
  border-top: 1px solid rgba(0, 153, 152, 0.1);
  border-bottom: 1px solid rgba(0, 111, 114, 0.08);
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 1320px;
  margin: 0 auto 8px;
  color: #8c9ca7;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.about-breadcrumb a {
  color: #7a8b96;
  transition: color 0.2s ease;
}

.about-breadcrumb a:hover {
  color: var(--teal-dark);
}

.about-breadcrumb span {
  color: #a0acb5;
}

.about-breadcrumb b {
  color: #6f7f89;
  font-weight: 800;
}

.about-title-strip h1 {
  max-width: 1320px;
  margin: 0 auto;
  color: #303943;
  font-size: clamp(32px, 3vw, 54px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.about-holding-hero {
  position: relative;
  min-height: 590px;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(rgba(24, 54, 58, 0.83), rgba(24, 54, 58, 0.86)),
    var(--about-bg) center / cover no-repeat;
}

.about-holding-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 153, 152, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(7, 30, 34, 0.82), rgba(22, 54, 58, 0.58) 58%, rgba(22, 54, 58, 0.2));
}

.about-holding-overlay {
  position: relative;
  width: 100%;
  max-width: 1320px;
  min-height: 590px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 150px) 24px 72px;
  display: flex;
  align-items: center;
}

.about-holding-card {
  width: min(100%, 1120px);
  color: var(--white);
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 15px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #d8ffff;
  background: rgba(0, 153, 152, 0.22);
  border: 1px solid rgba(216, 255, 255, 0.22);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-holding-card h2 {
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 66px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.32);
  text-transform: uppercase;
}

.about-text-block {
  max-width: 1080px;
  display: grid;
  gap: 16px;
}

.about-text-block p {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.75;
  font-weight: 700;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
}

.about-stats-grid {
  width: min(100%, 980px);
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.about-stat-card {
  min-height: 108px;
  padding: 18px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.about-stat-card strong {
  display: block;
  color: #d8ffff;
  font-size: clamp(27px, 2.4vw, 42px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.about-stat-card span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.about-watermark-logo {
  position: absolute;
  inset-inline-end: 58px;
  bottom: 56px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(46px, 5.2vw, 82px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

.site-ltr .about-breadcrumb,
.site-ltr .about-title-strip h1,
.site-ltr .about-holding-card,
.site-ltr .about-text-block p {
  text-align: left;
}

.site-rtl .about-breadcrumb,
.site-rtl .about-title-strip h1,
.site-rtl .about-holding-card,
.site-rtl .about-text-block p {
  text-align: right;
}

@media (max-width: 980px) {
  .about-holding-overlay {
    padding-top: 56px;
    align-items: flex-start;
  }

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

  .about-watermark-logo {
    inset-inline-end: 24px;
    bottom: 28px;
    opacity: 0.42;
  }
}

@media (max-width: 560px) {
  .about-title-strip {
    padding-inline: 14px;
  }

  .about-holding-overlay {
    min-height: auto;
    padding: 42px 14px 86px;
  }

  .about-holding-hero {
    min-height: auto;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-card {
    min-height: 92px;
  }
}


/* ===========================================================
   Product detail page: full item content
   =========================================================== */
.item-product-hero {
  padding: 0;
  background: #ffffff;
}

.item-product-hero-inner {
  width: 100%;
  min-height: 615px;
  display: grid;
  grid-template-columns: minmax(390px, 38%) minmax(0, 62%);
  direction: ltr;
}

.item-product-media {
  position: relative;
  min-height: 615px;
  padding: 58px 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #effbfb 0%, #e9f7f7 100%);
  overflow: hidden;
}

.item-product-main-figure {
  min-height: 320px;
  display: grid;
  place-items: center;
}

.item-product-main-figure img {
  width: 100%;
  max-width: 440px;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 26px 36px rgba(0, 92, 92, 0.14));
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.item-product-main-figure img.is-changing {
  opacity: 0;
  transform: scale(0.985);
}

.item-product-arrow {
  position: absolute;
  top: 38%;
  width: 42px;
  height: 42px;
  border: 0;
  color: #b8c2d5;
  background: transparent;
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 3;
}

.item-product-arrow:hover {
  color: var(--teal);
  transform: scale(1.06);
}

.item-product-prev {
  left: 22px;
}

.item-product-next {
  right: 22px;
}

.item-product-dots {
  margin: 16px auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.item-slide-dot {
  width: 36px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: #cfd7e8;
  cursor: pointer;
  transition: 0.2s ease;
}

.item-slide-dot.active {
  background: var(--teal);
}

.item-product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  align-items: center;
}

.item-slide-thumb {
  min-height: 72px;
  display: grid;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.item-slide-thumb:hover,
.item-slide-thumb.active {
  border-color: rgba(0, 153, 152, 0.18);
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.item-slide-thumb img {
  width: 100%;
  max-width: 120px;
  height: 70px;
  object-fit: contain;
}

.item-product-copy {
  padding: 44px 38px 40px;
  direction: ltr;
}

.site-rtl .item-product-copy {
  direction: rtl;
}

.item-product-copy h1 {
  max-width: 850px;
  color: #26313d;
  font-size: clamp(36px, 3.15vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.7px;
  text-transform: uppercase;
}

.item-product-description {
  max-width: 850px;
  margin-top: 12px;
  padding: 10px 16px;
  color: #193136;
  background: rgba(255, 255, 255, 0.78);
  border: 3px solid rgba(0, 153, 152, 0.13);
  border-radius: 3px;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.item-spec-grid {
  max-width: 850px;
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.item-spec-card {
  min-height: 58px;
  padding: 10px 18px;
  color: var(--white);
  background: linear-gradient(180deg, var(--teal), var(--teal-dark));
  border-radius: 4px;
}

.item-spec-card span,
.item-spec-card strong {
  display: block;
}

.item-spec-card span {
  font-size: 15px;
  line-height: 1.15;
  font-weight: 700;
}

.item-spec-card strong {
  margin-top: 4px;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 900;
}

.item-hero-request-box {
  max-width: 850px;
  margin-top: 15px;
  padding: 24px 25px;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  background: var(--teal-soft);
  border-radius: 9px;
}

.item-hero-request-box > img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.item-detail-form h3 {
  color: #183238;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
  margin-bottom: 4px;
}

.item-detail-form p {
  color: #263f42;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 12px;
}

.item-form-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 10px;
}

.item-detail-side-form .item-form-inputs {
  grid-template-columns: 1fr;
}

.item-form-inputs input {
  width: 100%;
  height: 49px;
  padding: 0 15px;
  border: 1.5px solid rgba(38, 63, 66, 0.72);
  outline: none;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 800;
}

.item-form-inputs input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 153, 152, 0.13);
}

.item-form-policy {
  margin: 8px 0 12px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}

.item-form-policy input {
  appearance: none;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 3px;
  background: var(--teal);
  position: relative;
}

.item-form-policy input:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.item-form-policy span {
  color: #203a3f;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 800;
}

.item-form-policy a {
  color: var(--teal-dark);
}

.item-detail-form button,
.item-price-row a {
  min-width: 150px;
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border: 2px solid var(--red);
  border-radius: 4px;
  color: var(--red);
  background: transparent;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  transition: 0.24s ease;
}

.item-detail-form button:hover,
.item-price-row a:hover {
  color: var(--white);
  background: var(--red);
}

.item-price-row {
  max-width: 850px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.item-price-row span {
  color: #798090;
  font-size: 18px;
  font-weight: 900;
}

.item-price-row a {
  gap: 10px;
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.item-price-row a::after {
  content: "▦";
  font-size: 18px;
}

.item-details-section {
  padding: 40px 20px 74px;
  background: #fbfdfe;
}

.item-details-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.item-tabs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
  direction: ltr;
}

.site-rtl .item-tabs-layout,
.site-rtl .item-tabs-main,
.site-rtl .item-contact-sidebar {
  direction: rtl;
}

.item-tabs-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.item-tab-btn {
  min-height: 46px;
  padding: 10px 18px;
  border: 0;
  border-radius: 4px;
  color: #004a50;
  background: var(--teal-soft);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  transition: 0.22s ease;
}

.item-tab-btn:hover,
.item-tab-btn.active {
  color: var(--white);
  background: var(--teal-dark);
}

.item-tab-panel {
  display: none;
}

.item-tab-panel.active {
  display: block;
}

.item-tab-copy {
  color: #14242a;
  font-size: 16px;
  line-height: 1.65;
}

.item-tab-copy h3 {
  color: #1d3139;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.item-tab-copy h4 {
  color: #1d3139;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 18px;
}

.item-tab-copy p {
  margin-bottom: 13px;
  font-weight: 600;
}

.item-description-list,
.item-extra-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 12px;
}

.item-description-list li,
.item-extra-list li {
  position: relative;
  padding-inline-start: 24px;
  margin-bottom: 8px;
  font-weight: 600;
}

.item-description-list li::before,
.item-extra-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.7em;
  width: 13px;
  height: 9px;
  border-radius: 0 999px 999px 0;
  background: rgba(0, 153, 152, 0.5);
}

.item-detail-fact {
  color: #152d34;
  font-weight: 800 !important;
}

.item-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.35;
}

.item-details-table td {
  padding: 10px 16px;
  border: 1px solid rgba(30, 52, 56, 0.28);
  vertical-align: top;
}

.item-details-table tr:nth-child(odd) td {
  background: rgba(223, 246, 247, 0.42);
}

.item-details-table td:first-child {
  width: 46%;
  font-weight: 700;
}

.item-contact-sidebar {
  position: sticky;
  top: 18px;
  padding: 26px 25px;
  background: var(--teal-soft);
  border-radius: 5px;
}

.item-contact-sidebar .item-detail-form h3 {
  color: var(--teal-dark);
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}

.item-contact-sidebar .item-detail-form button {
  width: 100%;
  color: var(--white);
  background: rgba(0, 111, 114, 0.62);
  border-color: transparent;
}

.item-contact-sidebar .item-detail-form button:hover {
  background: var(--teal-dark);
}

.item-detail-gallery {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}

.item-detail-gallery a,
.item-schema-grid a {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: var(--teal-soft);
}

.item-detail-gallery img {
  width: 100%;
  height: 148px;
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.item-detail-gallery a:hover img,
.item-schema-grid a:hover img {
  transform: scale(1.035);
}

.item-schema-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.item-schema-grid img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  padding: 16px;
  background: #ffffff;
  transition: transform 0.25s ease;
}

@media (max-width: 1100px) {
  .item-product-hero-inner,
  .item-tabs-layout {
    grid-template-columns: 1fr;
  }

  .item-product-media,
  .item-product-main-figure {
    min-height: auto;
  }

  .item-contact-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .item-product-media,
  .item-product-copy {
    padding: 34px 16px;
  }

  .item-product-thumbs,
  .item-spec-grid,
  .item-hero-request-box,
  .item-form-inputs,
  .item-detail-gallery,
  .item-schema-grid {
    grid-template-columns: 1fr;
  }

  .item-hero-request-box > img {
    width: 110px;
    height: 110px;
    margin: 0 auto;
  }

  .item-product-copy h1 {
    font-size: 32px;
  }

  .item-product-description {
    font-size: 14px;
  }

  .item-tabs-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .item-tab-btn {
    width: 100%;
  }

  .item-details-table td {
    display: block;
    width: 100% !important;
  }
}


/* ===========================================================
   Model range carousel + offer modal + utility submit pages
   =========================================================== */
.model-range-section {
  padding: 34px 36px 48px;
  background: #ffffff;
  overflow: hidden;
}

.model-range-inner {
  width: min(1420px, 100%);
  margin: 0 auto;
}

.model-range-head h2 {
  width: fit-content;
  margin-bottom: 18px;
  color: #26313d;
  background: rgba(0, 0, 0, 0.18);
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.7px;
}

.model-range-shell {
  position: relative;
}

.model-range-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 280px);
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 44px 8px;
  scrollbar-width: none;
}

.model-range-track::-webkit-scrollbar {
  display: none;
}

.model-card {
  min-height: 340px;
  padding: 24px 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  scroll-snap-align: start;
  border-radius: 5px;
  background: var(--teal-soft);
  color: #303943;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.model-card:hover,
.model-card.is-current {
  transform: translateY(-3px);
  background: #d4f0f1;
  box-shadow: 0 18px 40px rgba(0, 128, 128, 0.13);
}

.model-card figure {
  height: 165px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.model-card-img {
  width: 100%;
  max-width: 210px;
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 91, 91, 0.12));
}

.model-card strong {
  display: block;
  color: #303943;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.model-card small {
  display: block;
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.model-range-arrow {
  position: absolute;
  top: 43%;
  z-index: 5;
  width: 40px;
  height: 72px;
  border: 0;
  color: #ffffff;
  background: var(--teal);
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
}

.model-range-arrow:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.model-range-prev {
  left: 0;
}

.model-range-next {
  right: 0;
}

.model-range-dots {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.model-range-dots button {
  width: 5px;
  height: 5px;
  border: 0;
  border-radius: 50%;
  background: #cceff0;
  cursor: pointer;
}

.model-range-dots button.active {
  background: var(--teal);
}

.related-model-range {
  padding-top: 28px;
  background: #fbfdfe;
}

.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: stretch;
  justify-content: flex-end;
}

.offer-modal.is-open {
  display: flex;
}

.offer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 111, 114, 0.3);
  backdrop-filter: blur(6px);
}

.offer-modal-panel {
  position: relative;
  z-index: 2;
  width: min(430px, calc(100% - 28px));
  min-height: 100%;
  margin-inline-start: auto;
  padding: 58px 25px 30px;
  background: #ffffff;
  box-shadow: -18px 0 55px rgba(0, 80, 90, 0.24);
  overflow-y: auto;
}

.offer-modal-close {
  position: absolute;
  top: 20px;
  inset-inline-end: 22px;
  width: 38px;
  height: 38px;
  border: 0;
  color: var(--teal-dark);
  background: transparent;
  font-size: 46px;
  line-height: 0.8;
  cursor: pointer;
}

.offer-modal-panel h2 {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-modal-panel p {
  color: #3a454b;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  margin-bottom: 17px;
}

.offer-modal-form {
  display: grid;
  gap: 10px;
}

.offer-modal-form input[type="text"],
.offer-modal-form input[type="tel"],
.offer-modal-form input[type="email"],
.offer-modal-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(0, 153, 152, 0.22);
  border-radius: 4px;
  outline: none;
  color: var(--dark);
  background: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.offer-modal-form textarea {
  min-height: 68px;
  padding-top: 13px;
  resize: vertical;
}

.offer-modal-form input:focus,
.offer-modal-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 153, 152, 0.12);
}

.offer-modal-form small {
  color: #8a9298;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
}

.offer-policy {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}

.offer-policy input {
  appearance: none;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  border-radius: 3px;
  background: var(--teal);
  position: relative;
}

.offer-policy input:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.offer-policy span {
  color: #203a3f;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
}

.offer-policy a {
  color: var(--teal-dark);
}

.offer-modal-form button {
  min-height: 50px;
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  background: var(--teal);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.22s ease;
}

.offer-modal-form button:hover {
  background: var(--teal-dark);
}

.offer-modal-open {
  overflow: hidden;
}

.utility-page {
  min-height: 100vh;
  padding: 70px 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f8ffff, var(--bg));
}

.utility-card {
  width: min(760px, 100%);
  padding: 36px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
  color: var(--dark);
}

.utility-card h1 {
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 900;
}

.utility-card p,
.utility-card li {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.utility-card ul {
  margin: 18px 0;
  padding-inline-start: 22px;
}

.utility-card a {
  display: inline-flex;
  margin-top: 18px;
  min-height: 44px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 4px;
  color: #ffffff;
  background: var(--teal);
  font-weight: 900;
}

@media (max-width: 760px) {
  .model-range-section {
    padding: 28px 12px 38px;
  }

  .model-range-track {
    grid-auto-columns: minmax(220px, 82vw);
    padding-inline: 34px;
  }

  .model-card {
    min-height: 300px;
    padding: 20px;
  }

  .model-card strong {
    font-size: 20px;
  }

  .model-range-arrow {
    width: 34px;
    height: 58px;
    font-size: 36px;
  }

  .offer-modal-panel {
    width: min(100%, 420px);
  }
}


/* ===========================================================
   v25 centralized forms + category 1/2 list layout
   =========================================================== */
.category-items-section.concrete-items-list,
.category-items-section.asphalt-items-list {
  padding-top: 0;
  background: #ffffff;
}

.category-items-section.concrete-items-list .category-items-inner,
.category-items-section.asphalt-items-list .category-items-inner {
  width: 100%;
  max-width: 100%;
}

.category-items-section.concrete-items-list .category-section-head,
.category-items-section.asphalt-items-list .category-section-head {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto 20px;
}

.category-items-section.concrete-items-list .category-page-grid,
.category-items-section.asphalt-items-list .category-page-grid {
  width: 100%;
  max-width: 100%;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #ffffff;
  border-color: rgba(0, 153, 152, 0.65);
}

.category-items-section.concrete-items-list .category-page-card,
.category-items-section.asphalt-items-list .category-page-card {
  min-height: 245px;
  border-color: rgba(0, 153, 152, 0.65);
  border-style: dotted;
  border-top: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    linear-gradient(90deg, rgba(223, 246, 247, 0.70) 0%, rgba(255,255,255,0.82) 46%, rgba(255,255,255,0.95) 100%);
}

.category-items-section.concrete-items-list .category-page-card::before,
.category-items-section.asphalt-items-list .category-page-card::before {
  opacity: 0.055;
  background-position: right center;
  background-size: 70% auto;
}

.category-items-section.concrete-items-list .category-page-card-copy strong,
.category-items-section.asphalt-items-list .category-page-card-copy strong {
  font-size: clamp(23px, 2vw, 34px);
}

.category-items-section.concrete-items-list .category-page-card-copy em,
.category-items-section.asphalt-items-list .category-page-card-copy em {
  display: none;
}

.category-items-section.concrete-items-list .category-page-card-copy b,
.category-items-section.asphalt-items-list .category-page-card-copy b {
  min-height: 34px;
  margin-top: 15px;
  padding: 7px 13px;
  font-size: 13px;
}

.utility-direct-contacts {
  margin: 16px 0 10px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(0, 153, 152, 0.08);
}

.utility-direct-contacts p {
  margin: 4px 0;
  color: var(--dark);
  font-weight: 800;
}

.utility-direct-contacts a {
  color: var(--teal-dark);
}

@media (max-width: 900px) {
  .category-items-section.concrete-items-list .category-page-grid,
  .category-items-section.asphalt-items-list .category-page-grid {
    grid-template-columns: 1fr;
  }

  .category-items-section.concrete-items-list .category-page-card,
  .category-items-section.asphalt-items-list .category-page-card {
    grid-template-columns: 140px minmax(0, 1fr);
    min-height: 210px;
    padding: 24px 18px;
  }
}

@media (max-width: 560px) {
  .category-items-section.concrete-items-list .category-section-head,
  .category-items-section.asphalt-items-list .category-section-head {
    width: calc(100% - 28px);
  }

  .category-items-section.concrete-items-list .category-page-card,
  .category-items-section.asphalt-items-list .category-page-card {
    grid-template-columns: 1fr;
    text-align: start;
  }
}
