

.modern-section {
  padding: 6vw 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle background texture */
.modern-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(11,60,111,0.04), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255,213,50,0.06), transparent 40%);
  pointer-events: none;
}

.info-wrapper-modern {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5vw;
  max-width: 85vw;
  margin: auto;
}

/* ================= IMAGE ================= */

.info-image-modern {
  flex: 1;
  position: relative;
}

.info-image-modern img {
  width: 100%;
  border-radius: 1.2vw;
  box-shadow:
    0 1vw 3vw rgba(0,14,56,0.12);
  transition: 0.5s ease;
}

.info-image-modern:hover img {
  transform: scale(1.03);
}

/* ================= CONTENT ================= */

.info-content-modern {
  flex: 1;
}

.info-title {
  font-size: 2.5vw;
  font-weight: 800;
  color: #0b3c6f;
  margin-bottom: 1vw;
  line-height: 1.2;
}

.info-sub {
  font-size: 1.05vw;
  line-height: 1.5;
  color: #212529;
  margin-bottom: 2vw;
}

/* ================= LIST ================= */

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1vw;
  margin-bottom: 1.2vw;
}

.list-icon {
  width: 2vw;
  height: 2vw;
  min-width: 2vw;
  background: rgba(255,213,50,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD532;
  font-size: 0.8vw;
  margin-top: 0.15vw;
}

.list-text {
  font-size: 1vw;
  line-height: 1.7;
  color: #212529;
  font-weight: 500;
}


.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: center;   /* center align */
  gap: 1vw;
  margin-bottom: 1.2vw;
}

.list-icon {
  width: 2vw;
  height: 2vw;
  min-width: 2vw;
  background: rgba(255, 213, 50, 0.15);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #FFD532;
  flex-shrink: 0;
}

.list-icon .icon {
  font-size: 1vw;
  line-height: 1;
}

.list-text {
  font-size: 1vw;
  line-height: 1.6;
  color: #212529;
  font-weight: 500;
  margin: 0;
}

/* ================= TAG ================= */

.material-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6vw;
  margin-top: 2vw;
  padding: 0.8vw 1.8vw;
  background: rgba(255,213,50,0.15);
  border: 1px solid #FFD532;
  border-radius: 5vw;
  color: #0b3c6f;
  font-size: 0.9vw;
  font-weight: 700;
  letter-spacing: 0.03vw;
}

/* =====================================================
   PRODUCT GRID SECTION
   ===================================================== */

.product-grid-section {
  background:
    linear-gradient(135deg, #000E38 0%, #0b3c6f 100%);
  position: relative;
  overflow: hidden;
}

.product-grid-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/about-background.webp") center/cover no-repeat;
  opacity: 0.04;
}

.section-title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 2.8vw;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4vw;
}

.section-title::after {
  content: "";
  width: 5vw;
  height: 0.22vw;
  background: #FFD532;
  display: block;
  margin: 1vw auto 0;
  border-radius: 5vw;
}

/* ================= GRID ================= */

.product-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
  padding: 0 5vw;
}

/* ================= CARD ================= */

.product-card-modern {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 1.2vw;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1vw 2vw rgba(0,0,0,0.15);
}

.product-card-modern:hover {
  transform: translateY(-0.7vw);
  border-color: rgba(255,213,50,0.5);
  box-shadow: 0 1.5vw 3vw rgba(0,0,0,0.2);
}

/* ================= IMAGE ================= */

.product-image-container {
  height: 13vw;
  overflow: hidden;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.product-card-modern:hover img {
  transform: scale(1.06);
}

/* ================= CONTENT ================= */

.product-info-modern {
  padding: 1.5vw;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.3vw;
  font-weight: 700;
  color: #FFD532;
  margin-bottom: 0.8vw;
}

.product-description {
  font-size: 0.92vw;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.2vw;
}

/* ================= SPECS ================= */

.product-specs {
  list-style: none;
  padding: 0;
  margin-top: auto;
}

.product-specs li {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  padding: 0.8vw 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.spec-icon {
  width: 2vw;
  height: 2vw;
  min-width: 2vw;
  background: rgba(255,213,50,0.15);
  color: #FFD532;
  border-radius: 0.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85vw;
}

.spec-text {
  font-size: 0.9vw;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}
/* =====================================================
   RESPONSIVE
   ===================================================== */

/* ================= TABLET ================= */
@media (max-width: 991px) {
    .breadcrumb {
        font-size: 4vw;
        flex-wrap: wrap;
        gap: 2vw;
    }
  .modern-section {
    padding: 8vw 0;
  }

  .info-wrapper-modern {
    flex-direction: column;
    gap: 6vw;
    max-width: 90vw;
  }

  .info-wrapper-modern.reverse {
    flex-direction: column-reverse;
  }

  .info-title {
    font-size: 5vw;
    text-align: center;
  }

  .info-sub {
    font-size: 2.4vw;
    text-align: center;
    margin-bottom: 4vw;
  }

  .info-list li {
    gap: 2vw;
    margin-bottom: 2vw;
  }

  .list-icon {
    width: 4vw;
    height: 4vw;
    min-width: 4vw;
    font-size: 1.5vw;
  }

  .list-text {
    font-size: 2.2vw;
  }

  .material-tag {
    font-size: 2vw;
    padding: 1.2vw 3vw;
    display: table;
    margin: 4vw auto 0;
  }

  .info-image-modern img {
    border-radius: 2vw;
  }

  /* ================= GRID ================= */

  .section-title {
    font-size: 5vw;
    margin-bottom: 6vw;
  }

  .section-title::after {
    width: 10vw;
    height: 0.4vw;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
    padding: 0 4vw;
  }

  .product-image-container {
    height: 24vw;
  }

  .product-card-modern {
    border-radius: 2vw;
  }

  .product-info-modern {
    padding: 3vw;
  }

  .product-title {
    font-size: 2.6vw;
  }

  .product-description {
    font-size: 2vw;
    margin-bottom: 2vw;
  }

  .product-specs li {
    gap: 1.5vw;
    padding: 1.5vw 0;
  }

  .spec-icon {
    width: 4vw;
    height: 4vw;
    min-width: 4vw;
    font-size: 1.5vw;
  }

  .spec-text {
    font-size: 1.9vw;
  }
}


/* ================= MOBILE ================= */
@media (max-width: 576px) {

  .modern-section {
    padding: 12vw 0;
  }

  .info-wrapper-modern {
    max-width: 92vw;
    gap: 8vw;
  }

  .info-title {
    font-size: 8vw;
    line-height: 1.3;
  }

  .info-sub {
    font-size: 3.8vw;
    line-height: 1.9;
    margin-bottom: 5vw;
  }

  .info-list li {
    gap: 3vw;
    margin-bottom: 4vw;
  }

  .list-icon {
    width: 7vw;
    height: 7vw;
    min-width: 7vw;
    font-size: 2.5vw;
    margin-top: 0.5vw;
  }

  .list-text {
    font-size: 3.5vw;
    line-height: 1.8;
  }

  .material-tag {
    font-size: 3vw;
    padding: 2vw 5vw;
    border-radius: 10vw;
    margin-top: 5vw;
  }

  .info-image-modern img {
    border-radius: 4vw;
  }

  /* ================= GRID ================= */

  .section-title {
    font-size: 7vw;
    margin-bottom: 8vw;
  }

  .section-title::after {
    width: 15vw;
    height: 0.7vw;
    margin-top: 2vw;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 6vw;
    padding: 0 5vw;
  }

  .product-card-modern {
    border-radius: 4vw;
  }

  .product-image-container {
    height: 50vw;
  }

  .product-info-modern {
    padding: 5vw;
  }

  .product-title {
    font-size: 5vw;
    margin-bottom: 2vw;
  }

  .product-description {
    font-size: 3.5vw;
    line-height: 1.8;
    margin-bottom: 4vw;
  }

  .product-specs li {
    gap: 3vw;
    padding: 3vw 0;
  }

  .spec-icon {
    width: 7vw;
    height: 7vw;
    min-width: 7vw;
    border-radius: 2vw;
    font-size: 2.5vw;
  }

  .spec-text {
    font-size: 3.2vw;
    line-height: 1.7;
  }

  .info-list li {
    display: flex;
    align-items: flex-start;
    gap: 3vw;
    margin-bottom: 4vw;
  }

  .list-icon {
    width: 7vw;
    height: 7vw;
    min-width: 7vw;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: -1vw;
    flex-shrink: 0;
  }

  .list-icon .icon {
    font-size: 3.5vw;
    line-height: 1;
  }

  .list-text {
    font-size: 4vw;
    line-height: 1.5;
  }
}