/* =========================================================
   ROOT TOKENS
   ========================================================= */
:root{
  --kc-navy: #0a2f5a;
  --kc-accent: #ff6a00;
  --kc-bg: #f7f9fc;
  --kc-card: #ffffff;
  --kc-border: #e6ecf5;
  --kc-text: #1f2a44;
  --kc-muted: #475569;
  --kc-shadow: 0 14px 32px rgba(8,18,44,.12);
}

/* =========================================================
   PAGE WRAPPER
   ========================================================= */
.kc-page{
  background: var(--kc-bg);
}

.kc-container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================================================
   QUALITY INTRO SECTION
   ========================================================= */
.quality-section{
  padding: 64px 0 46px;
  background: #f8fafc;
}

/* Same heading style as Awards */
.section-heading{
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  color: var(--kc-accent);
  margin: 0 0 18px;
}

.section-heading .heading-bar{
  width: 5px;
  height: 30px;
  background: var(--kc-navy);
  border-radius: 3px;
}

.quality-desc{
  max-width: 920px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--kc-text);
  margin: 0;
}

/* =========================================================
   EQUIPMENT SECTIONS
   ========================================================= */
.equip-section{
  padding: 36px 0 22px;
}

/* Section title with left bar */
.equip-title{
  position: relative;
  padding-left: 14px;
  margin: 0 0 22px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--kc-accent);
}

.equip-title::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:4px;
  height:calc(100% - 16px);
  background:#1b5dcc;
  border-radius:2px;
}

/* =========================================================
   EQUIPMENT GRID (PRODUCT STYLE)
   ========================================================= */
.equip-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

/* Responsive grid */
@media (max-width:1100px){
  .equip-grid{ grid-template-columns: repeat(8, 1fr); }
}
@media (max-width:700px){
  .equip-grid{ grid-template-columns: repeat(4, 1fr); }
}

/* Each card */
.equip-card{
  grid-column: span 4;
  background: var(--kc-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--kc-border);
  box-shadow: var(--kc-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.equip-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(8,18,44,.18);
}

/* =========================================================
   IMAGE AREA (MATCHES PRODUCT CARDS)
   ========================================================= */
.equip-img{
  height: 220px;
  background: #f7f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.equip-img img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;   /* 🔑 NO CROPPING */
  display: block;
  transition: transform .35s ease;
}

.equip-card:hover .equip-img img{
  transform: scale(1.04);
}

/* =========================================================
   CARD BODY / TITLE
   ========================================================= */
.equip-body{
  padding: 16px 18px 20px;
  text-align: center;
}

.equip-body h3{
  margin: 0;
  font-size: .95rem;
  font-weight: 700;
  color: var(--kc-text);
  line-height: 1.45;
  text-transform: uppercase;
}

/* =========================================================
   MOBILE TUNING
   ========================================================= */
@media (max-width:700px){
  .equip-card{
    grid-column: span 4;
  }
  .equip-img{
    height: 200px;
  }
}

@media (max-width:480px){
  .equip-img{
    height: 180px;
  }
  .equip-body{
    padding: 14px 14px 18px;
  }
}

/* =========================================================
   ACCESSIBILITY & MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  *{
    transition: none !important;
    animation: none !important;
  }
}
