/* ============================================================
   IMAGE ROW (.why-choose-us__images-row)
   (Row of images/icons below the cards)
============================================================ */
.why-choose-us__images-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;

  margin-top: 28px;

  width: 100%;

  align-items: start;
  justify-items: center;
  border-color: azure;
  
}
/* Flex container for each image cell */
.why-choose-us__images-row > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  box-shadow: rgb(255, 0, 64);
}

/* Image row special cells (certifications, security, custom) */
.why-choose-us__images-row .why-choose-us__certifications,
.why-choose-us__images-row .why-choose-us__security,
.why-choose-us__images-row .why-choose-us__custom {
  margin: 0;
  padding: 0;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  border: none;
  box-sizing: border-box;
  box-shadow: 0 0 40px 10px rgba(255, 255, 255, 0), 0 0 80px 20px rgba(200, 0, 30, 0.12);
}

/* Image icon style */
.why-choose-us__images-row .why-choose-us__icon {
  position: static;

  width: clamp(260px, 36vw, 750px);
  max-width: 100%;
  height: auto;

  display: block;
  margin: 0 auto;

  object-fit: contain;
  border-radius: 12px;

  border: 3px solid rgba(254, 254, 254, 0.38);

  box-shadow:
    0 0 8px rgb(129, 129, 129),
    0 6px 20px rgba(111, 111, 111, 0.4);

  cursor: pointer;

  transition:
    transform 240ms cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 240ms cubic-bezier(0.2, 0.9, 0.2, 1),
    border-color 240ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

/* Image icon hover/focus effect */
.why-choose-us__images-row .why-choose-us__icon:hover,
.why-choose-us__images-row .why-choose-us__icon:focus-visible {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(255, 255, 255, 1);
  box-shadow:
    0 0 12px rgb(255, 255, 255),
    0 0 30px rgba(255, 255, 255, 0.25),
    0 12px 35px rgba(0, 0, 0, 0.5);
  outline: none;
}

/* Dimmed/disabled state for icons */
.why-choose-us__icon--dimmed {
  opacity: 0.18 !important;
  filter: blur(1.5px) grayscale(60%);
  pointer-events: none !important;
  transition: opacity 0.2s, filter 0.2s;
}