/* ===== RESET FOR THIS SECTION ONLY ===== */
.chi-poultry-section * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.chi-poultry-section {
  padding: 100px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  color: #111827;
}

.chi-poultry-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 8%;
}

/* ===== DIV 1: TEXT + IMAGE ===== */
.chi-poultry-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.chi-poultry-tag {
  display: inline-block;
  background: #eef4f0;
  color: #4b5563;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.chi-poultry-title {
  font-size: 44px;
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.chi-poultry-title .green { color: #166534; }

.chi-poultry-desc {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
}

.chi-poultry-imgbox {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chi-poultry-imgbox img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.chi-poultry-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  color: #111827;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* ===== DIV 2: STATS BAR ===== */
.chi-poultry-stats {
  background: #f9fafb;
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  margin-bottom: 80px;
}

.chi-stat-icon {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 10px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.chi-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: #166534;
  line-height: 1;
  margin-bottom: 6px;
}

.chi-stat-label {
  font-size: 13px;
  color: #6b7280;
}

/* ===== DIV 3: VISION MISSION ===== */
.chi-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 100px;
}

.chi-vm-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.chi-vm-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.chi-vm-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.chi-vm-icon.yellow { background: #fef3c7; }
.chi-vm-icon.blue { background: #dbeafe; }

.chi-vm-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.chi-vm-text {
  font-size: 14.5px;
  color: #6b7280;
  line-height: 1.7;
}

/* ===== DIV 4: WHY CHI ===== */
.chi-why-tag {
  background: #eef4f0;
  color: #4b5563;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.chi-why-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 18px 0 50px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e7eb;
}

.chi-why-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.chi-why-title .green { color: #166534; }

.chi-why-subtitle {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 380px;
  text-align: right;
}

.chi-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.chi-why-num {
  width: 32px;
  height: 32px;
  background: #f3f4f6;
  color: #166534;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.chi-why-item-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.chi-why-item-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .chi-poultry-hero { grid-template-columns: 1fr; gap: 40px; }
  .chi-poultry-title { font-size: 34px; }
  .chi-poultry-stats { grid-template-columns: 1fr; gap: 30px; }
  .chi-vm-grid { grid-template-columns: 1fr; }
  .chi-why-header { flex-direction: column; }
  .chi-why-subtitle { text-align: left; max-width: 100%; }
  .chi-why-grid { grid-template-columns: 1fr; gap: 35px; }
  .chi-why-title { font-size: 32px; }
  .chi-poultry-container { padding: 0 6%; }
}