/* ═══════════════════════════════════════
   EQUIPMENT PAGE — equipment.css
═══════════════════════════════════════ */

/* ── Hero ───────────────────────────── */
.eq-hero {
  position: relative;
  /* min-height: 380px; */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  /* background: #07090d; */
  background: linear-gradient(135deg, #031a30, #0b1d3a, #031a30);
}

.eq-hero__bg {
  position: absolute;
  inset: 0;
  /* background: url('../assets/img/equipment-hero.jpg') center/cover no-repeat; */
  filter: brightness(.38) saturate(1.1);
}

.eq-hero__inner {
  position: relative;
  padding: 80px 0 56px;
}

.eq-hero__kicker {
  color: #c9a84c;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
  display: block;
}

.eq-hero h1 {
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 14px;
}

.eq-hero p {
  color: rgba(255,255,255,.70);
  font-size: 15px;
  max-width: 58ch;
  margin: 0;
}

.breadcrumb-item,
.breadcrumb-item a { color: rgba(255,255,255,.55); font-size: 13px; }
.breadcrumb-item.active { color: #c9a84c; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.30); }

/* ── Stat Strip ─────────────────────── */
.eq-strip {
  background: #040b17;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.eq-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 12px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: .2s ease;
}

.eq-strip__item:last-child { border-right: none; }
.eq-strip__item:hover { background: rgba(201,168,76,.08); }

.eq-strip__num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #c9a84c;
  line-height: 1;
}

.eq-strip__label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 5px;
}

/* ── Intro ──────────────────────────── */
.eq-intro {
  padding: 60px 0 30px;
  background: #fff;
}

.eq-kicker {
  display: block;
  color: #c9a84c;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}

.eq-h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #0b1d3a;
  margin: 0 0 14px;
  line-height: 1.2;
}

.eq-lead {
  color: #666;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

/* ── Main Section ───────────────────── */
.eq-section {
  padding: 20px 0 80px;
  background: #f8f9fb;
}

/* ── Equipment Block ────────────────── */
.eq-block {
  background: #fff;
  border: 1px solid rgba(11,29,58,.09);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,.06);
  margin-bottom: 28px;
  transition: box-shadow .25s ease;
}

.eq-block:hover {
  box-shadow: 0 14px 42px rgba(0,0,0,.11);
}

/* Image column */
.eq-block__img-col {
  position: relative;
  min-height: 260px;
}

.eq-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 260px;
  transition: transform .4s ease;
}

.eq-block:hover .eq-block__img {
  transform: scale(1.04);
}

.eq-block__img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
  color: #fff;
  padding: 24px 16px 12px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eq-block__img-label i { color: #c9a84c; }

/* Table column */
.eq-block__table-col {
  padding: 24px 28px;
}

.eq-block__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.eq-block__icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(201,168,76,.12);
  color: #c9a84c;
  display: grid;
  place-items: center;
  font-size: 19px;
  flex-shrink: 0;
}

.eq-block__title {
  font-size: 18px;
  font-weight: 700;
  color: #0b1d3a;
  margin: 2px 0 4px;
}

.eq-block__sub {
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* ── Table Styles ───────────────────── */
.eq-table {
  margin: 0;
  font-size: 14px;
}

.eq-table thead tr {
  background: #0b1d3a;
}

.eq-table thead th {
  color:#0b1d3a;;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 14px;
  border: none;
  letter-spacing: .03em;
}

.eq-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s ease;
}

.eq-table tbody tr:last-child { border-bottom: none; }

.eq-table tbody tr:hover {
  background: rgba(201,168,76,.06);
}

.eq-table tbody td {
  padding: 10px 14px;
  color: #444;
  border: none;
  vertical-align: middle;
}

.eq-qty {
  display: inline-block;
  background: rgba(201,168,76,.12);
  color: #0b1d3a;
  font-weight: 700;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 20px;
  min-width: 44px;
  text-align: center;
}

/* ── Mini blocks (cleaning + flooring) ─ */
.eq-mini-block {
  background: #fff;
  border: 1px solid rgba(11,29,58,.09);
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  transition: box-shadow .2s ease;
}

.eq-mini-block:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.10);
}

.eq-mini-block__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}

/* ── CTA ────────────────────────────── */
.eq-cta {
  background: #c9a84c;
  padding: 48px 0;
}

.eq-cta h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #111;
  margin: 0;
}

.eq-cta p {
  color: rgba(0,0,0,.65);
  margin: 6px 0 0;
  font-size: 15px;
}

.eq-cta__btn {
  display: inline-flex;
  align-items: center;
  background: #0b1d3a;
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: .2s ease;
}

.eq-cta__btn:hover {
  background: #0d2347;
  color: #fff;
}

/* ── Responsive ─────────────────────── */
@media (max-width: 991px) {
  .eq-block__img-col { min-height: 220px; }
  .eq-block__img { min-height: 220px; }
  .eq-block__table-col { padding: 20px; }
  .eq-block__title { font-size: 16px; }
}

@media (max-width: 767px) {
  /* .eq-hero { min-height: 290px; } */
  /* .eq-hero__inner { padding: 70px 0 40px; } */
  .eq-strip__item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 16px 8px;
  }
  .eq-strip__item:last-child { border-bottom: none; }
  .eq-strip__num { font-size: 1.5rem; }
  .eq-block { border-radius: 14px; }
  .eq-block__img-col { min-height: 200px; }
  .eq-block__img { min-height: 200px; }
  .eq-section { padding: 16px 0 60px; }
}

@media (max-width: 576px) {
  .eq-intro { padding: 40px 0 20px; }
  .eq-table { font-size: 13px; }
  .eq-table thead th { padding: 8px 10px; font-size: 12px; }
  .eq-table tbody td { padding: 8px 10px; }
  .eq-block__table-col { padding: 16px; }
  .eq-block__title { font-size: 15px; }
  .eq-block__icon { width: 42px; height: 42px; font-size: 17px; }
  .eq-mini-block { padding: 18px; }
  .eq-cta { padding: 36px 0; }
  .eq-cta__btn { width: 100%; justify-content: center; }
}