/* ===== CHI CATFISH SECTION ===== */
.chi-catfish-section {
  padding: 100px 0;
  background: #f9fafb;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* FAINT WATERMARK LOGO */
.chi-catfish-section::after {
  content: "JUSTRAN FARMS LTD";
  position: absolute;
  top: 60px;
  right: 8%;
  font-size: 70px;
  font-weight: 800;
  color: rgba(17, 24, 39, 0.04);
  letter-spacing: 2px;
  z-index: 0;
  pointer-events: none;
}

.chi-catfish-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 8%;
  position: relative;
  z-index: 1;
}

/* HEADER */
.chi-catfish-header {
  margin-bottom: 50px;
  max-width: 800px;
}

.chi-catfish-main-title {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.chi-catfish-subtitle {
  font-size: 15.5px;
  color: #6b7280;
  line-height: 1.7;
}

/* 3 CARD GRID */
.chi-catfish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.chi-catfish-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.chi-catfish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* IMAGE WITH OVERLAY TITLE */
.chi-catfish-imgbox {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.chi-catfish-imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chi-catfish-imgbox::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.chi-catfish-card-title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  z-index: 2;
  line-height: 1.3;
}

/* CARD BODY */
.chi-catfish-card-body {
  padding: 20px 22px 24px 22px;
}

.chi-catfish-card-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
  min-height: 60px;
}

.chi-catfish-link {
  font-size: 14px;
  font-weight: 600;
  color: #166534;
  text-decoration: none;
  transition: 0.2s ease;
}

.chi-catfish-link:hover {
  color: #0f3f1f;
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .chi-catfish-grid { grid-template-columns: repeat(2, 1fr); }
  .chi-catfish-main-title { font-size: 38px; }
  .chi-catfish-section::after { font-size: 50px; right: 6%; }
  .chi-catfish-container { padding: 0 6%; }
}

@media (max-width: 600px) {
  .chi-catfish-grid { grid-template-columns: 1fr; }
  .chi-catfish-imgbox { height: 200px; }
  .chi-catfish-main-title { font-size: 32px; }
  .chi-catfish-section::after { display: none; }
}